我有一个以这种方式配置的 Gemfire 服务器区域(分布式)和一个本地区域(缓存代理):
<client-cache>
<pool name="client" subscription-enabled="true">
<locator host="localhost" port="13489" />
</pool>
<region name="customers" refid="CACHING_PROXY">
<region-attributes>
<subscription-attributes interest-policy="all"/>
<!--<subscription-attributes interest-policy="cache-content"/>-->
</region-attributes>
</region>
</client-cache>
当我从客户端区域获取值并且客户端上的密钥未知时 - 它是从服务器获取的。但是,在那之后,如果服务器值发生变化 - 即使设置了订阅属性,新值也不会传播到客户端。
这里的错误配置是什么?