ODatabasePool与OPartitionedDatabasePool无关

时间:2018-05-24 09:21:07

标签: orientdb

OrientDB 3;谈论OrientDb& ODatabasePool

但是,使用OPartitionedDatabasePool的任何人都无法自由移动到ODatabasePool。虽然他们的名字暗示了一些相似之处但他们没有。

无法理解设计意图,因为理想情况下,两者之间的切换应该是无缝的。

1 个答案:

答案 0 :(得分:1)

他们之间有一些相似之处,但如果你想使用后者,你需要多花几步。

以下是OPartitionedDatabasePool文档中的一些信息:

To acquire connection from the pool call acquire() method but to release connection you just need to call ODatabase.close() method.

OrientDB Javadoc | ODatabasePool

OrientDB Javadoc | OPartitionedDatabasePool