long start = System.nanoTime();
Session s = Factory.getSessionFullAccess();
Database db = s.getDatabase(server, dbPath);
DominoGraph graph = new DominoGraph(db);
for (int i = 1; i <= 10000; i++) {
Vertex v1 = graph.addVertex(null);
v1.setProperty("Test1", i);
Vertex v2 = graph.addVertex(null);
v2.setProperty("Test1", i);