From 4bf5636d24d96f5eac44875b25047cea83b14b53 Mon Sep 17 00:00:00 2001 From: Marko Budiselic Date: Sun, 20 Mar 2016 22:03:59 +0100 Subject: [PATCH] new connections per query: neo4j -> 2, memgraph -> 4 (this is optimal per each db) --- demo/static/demo.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/demo/static/demo.js b/demo/static/demo.js index ef9169f0e..7fd95dc2c 100644 --- a/demo/static/demo.js +++ b/demo/static/demo.js @@ -136,7 +136,7 @@ var params = { host: "localhost", port: "7474", - connections: 1, + connections: 2, duration: 1, queries: queries }; @@ -177,6 +177,7 @@ let hostname_port = $("#neo4j_url").val().split(":"); params.host = hostname_port[0]; params.port = hostname_port[1]; + params.connections = 2; registerParams(function() { start(); updateNeo4j(); @@ -196,6 +197,7 @@ let hostname_port = $("#memgraph_url").val().split(":"); params.host = hostname_port[0]; params.port = hostname_port[1]; + params.connections = 4; registerParams(function() { start(); updateMemgraph();