我使用以下代码连接到远程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的Region。
如何连接到远程Geode群集区域?我不想使用Spring数据。
最佳答案
您需要确保正在创建PROXY
或PROXY_CACHE
区域。使用这样的东西:
clientCache
.createClientRegionFactory(ClientRegionShortcut.PROXY)
.create("customers");