据我所知,可以使用以下方法创建嵌入式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:”连接到我的图表,因为这可能会在我的嵌入式服务器中创建网络层。
我的实际目标是: