gpt4 book ai didi

java - 无法从 Java 连接到远程 Geode 集群

转载 作者:行者123 更新时间:2023-12-01 21:12:33 25 4
gpt4 key购买 nike

我使用下面的代码连接到远程Geode集群

ClientCache clientCache =
new ClientCacheFactory().addPoolLocator("www.abc.com", 10334).create();

Region<String, Customer> region = clientCache.getRegion("customers");
System.out.println("region => " + region);

注意:www.abc.com:10334可以从我的机器访问。

日志显示区域已连接到 LocalRegion。

如何连接到远程 Geode 集群区域?我不想使用 Spring 数据。

最佳答案

您需要确保正在创建 PROXYPROXY_CACHE 区域。使用这样的东西:

clientCache
.createClientRegionFactory(ClientRegionShortcut.PROXY)
.create("customers");

关于java - 无法从 Java 连接到远程 Geode 集群,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58896969/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com