-
Notifications
You must be signed in to change notification settings - Fork 156
Closed
Description
- Neo4j version: Community Neo4j 3.5.3
- Neo4j Mode: Single instance
- Driver version: Java language driver 1.7.2
- Operating system: Ubuntu 18.04.2 LTS
- Steps to reproduce
- Start local instance of Neo4j 3.5.3
- Run the following class
import org.neo4j.driver.v1.*;
public class DriverTest {
public static void main(String[] args) {
long start = System.currentTimeMillis();
Driver driver = GraphDatabase.driver("bolt://localhost:7687", AuthTokens.basic("neo4j", "hej"));
long created = System.currentTimeMillis();
driver.close();
long closed = System.currentTimeMillis();
System.out.println("creation: " + (created - start) + "ms");
System.out.println("closing: " + (closed - created) + "ms");
}
}
- Expected behavior
creation: 14ms
closing: 22ms
- Actual behavior
creation: 1478ms
closing: 2248ms
kant111
Metadata
Metadata
Assignees
Labels
No labels