如何从嵌入式OrientServer创建OrientGraph?

时间:2015-10-05 16:10:19

标签: orientdb

据我所知,可以使用以下方法创建嵌入式OrientDB¹服务器:

OServer server = OServerMain.create();

我不明白的是如何使用OrientGraphFactory创建或打开OrientGraph。连接两个系统需要什么。 (OServer,OrientGraph)?

我通常以这种方式创建我的OrientGraph:

OrientGraphFactory factory = new OrientGraphFactory("plocal:" + options.getDirectory()).setupPool(5, 100);
OrientGraphNoTx noTx = factory.getNoTx();

如果可能,我不想使用“remote:”连接到我的图表,因为这可能会在我的嵌入式服务器中创建网络层。

我的实际目标是:

  • 使用OrientDB工作台打开图表进行检查
  • 启用OrientDB Graph数据库分发。

[1] http://orientdb.com/docs/2.1/Embedded-Server.html

0 个答案:

没有答案