GemFire 使用 JAVA 放在服务器区域

GemFire put on server Region using JAVA

如何使用 java 代码连接到 GemFire 集群,获取区域并将一些值从客户端放入该区域。

在官方用户指南中有几个您试图实现的示例,特别是在 Client/Server Example Configurations 中。下面是一个极简主义的例子。

服务器-cache.xml

<cache>
    <cache-server/>
    <region name="TEST">
        <region-attributes refid="REPLICATE"/>
    </region>
</cache>

客户端-cache.xml

<client-cache>
    <pool name="default">
        <locator host="localhost" port="10334"/>
    </pool>
    <region name="TEST" refid="PROXY"/>
</client-cache>

ClientApp.java

public static void main(String[] args) throws Exception {
    ClientCache cache = new ClientCacheFactory().set("cache-xml-file", "client-cache.xml").set("log-level", "config").create();
    Region region = cache.getRegion("TEST");
    region.put("key1", new MyPojo("attribute1", "attribute2"));
    cache.close();
    System.exit(0);
}

您可能想要检查 spring-data-gemfire 项目,并删除所有样板文件:-)。 干杯。