访问缓存orientdb离线

时间:2017-05-29 09:35:10

标签: java caching orientdb offline

我有一个远程orientdb服务器并根据文档 http://orientdb.com/docs/2.2.x/Caching.html 如果我不在线,似乎可以访问缓存。我搜索了很长时间,但我无法找到。我希望离线ODataBaseDocumentTx,但如果我尝试

ODatabaseDocumentTx db = new ODatabaseDocumentTx("remote:localhost/test").open("root","root")

我有一个例外:

  

无法创建与远程服务器地址的连接

这在我的案例中很明显。

1 个答案:

答案 0 :(得分:1)

您需要在线服务器才能使用它。 缓存需要远程服务器在线才能正常工作。

您提供的代码,尝试与数据库连接,没有它就无法运行:

ODatabaseDocumentTx db = new ODatabaseDocumentTx("remote:localhost/test").open("root","root")