I am using this plugin so that I can interface with orient DB using tinkerpop 3.x .
I am wondering how can I create different transactions ?
With TitanDB its as simple as:
t1 = graph.newTransaction();
t2 = graph.newTransaction();
t3 = graph.newTransaction();
I tried the following with OrientDB-Gremlin:
t1 = graph.tx().createThreadedTx();
t2 = graph.tx().createThreadedTx();
and received the following error:
java.lang.UnsupportedOperationException: Graph does not support threaded transactions
Does this mean the only way to get different transactions is to open them within the scope of a different thread ?