我的客户端正在使用arangodb-spring-data-3.0.0-RC.1 [依次使用arangodb-java-driver-4.7.0]连接到ArangoDB服务器版本[3.3.4]。
大多数时候,所有CRUD操作都可以正常进行,没有任何延迟,但是有时更新/获取调用的时间很长。进行实体更新大约需要3分钟的时间。
客户端arango模板构建器的配置如下:
private static final Builder builder = new ArangoDB.Builder()
.host(IP,8529).user(null).password(null)
.useProtcol(Protocol.HTTP_VPACK).maxConnections(25);
我使用模板的更新代码如下
final DocumentUpdateOptions updateOption =
new DocumentUpdateOptions();
updateOption.mergeObjects(false);
DocumentEntity docEntity = getArangoClient().update(
id, entity, updateOption);
此版本的客户端和服务器版本是否存在任何已知问题?我确认的一件事是我的DataConverter没花很长时间,但是我不确定它是在网络/连接中还是在服务器中被击中?调试此问题或建议的任何帮助将非常有帮助。
预先感谢, 阿伦