我是Dgraph的新手,我想使用Dgraph的Java客户端构建一个应用程序(使用Java)。
DgraphJavaSample
谈到创建DgraphClient
,如下所示:
ManagedChannel channel =
ManagedChannelBuilder.forAddress("localhost", 9000).usePlaintext(true).build();
DgraphBlockingStub blockingStub = DgraphGrpc.newBlockingStub(channel);
DgraphClient dgraphClient = new DgraphClient(Collections.singletonList(blockingStub));
但它并没有说明有关连接池的任何信息。所以,我的问题是 - Dgraph中是否需要连接池?如果是,那么我们如何在Dgraph中创建连接池?如果不是,那么Dgraph为什么不需要连接池?
提前致谢!