Filipe Peliz Pinto Teixeira
Filipe Peliz Pinto Teixeira
Hi Guys, I create indices the following way: graph.createVertexIndex("prop1", "label1", indexConfig); graph.createVertexIndex("prop2", "label1", indexConfig); graph.createVertexIndex("prop1", "label2", indexConfig); graph.createVertexIndex("prop2", "label2", indexConfig); The problem is that when I create vertices I am...
Hello Again, I have another problem. The following code fails: ``` final String labelVertex = "VertexLabel"; OrientGraph graph = new OrientGraphFactory("memory:myGraph").getNoTx(); Vertex v1 = graph.addVertex(labelVertex); graph.tx().commit(); v1 = graph.traversal().V().next(); Vertex...
Hi Guys, Are there any plans to support createThreadedTx() ? For my project I need to be able to give one thread multiple transactions and I can't find a way...