我使用的是this插件,以便我可以使用tinkerpop 3.x與orient DB進行交互。使用OrientDB-Gremlin創建事務
我想知道如何創建不同的交易?
隨着TitanDB它的那樣簡單:
t1 = graph.newTransaction();
t2 = graph.newTransaction();
t3 = graph.newTransaction();
我試着用OrientDB-精怪如下:
t1 = graph.tx().createThreadedTx();
t2 = graph.tx().createThreadedTx();
並收到以下錯誤:
java.lang.UnsupportedOperationException: Graph does not support threaded transactions
這是否意味着獲得不同事務的唯一方法是在不同線程的範圍內打開它們?
對於任何可能遇到此問題的人,我已經用orient-db gremlin插件提出了這個問題https://github.com/mpollmeier/orientdb-gremlin/issues/87 –