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>
クライアント領域から値を取得していて、クライアントでキーが不明な場合、サーバーからフェッチされます。ただし、その後、サーバーの値が変更された場合、サブスクリプション属性が設定されていても、新しい値はクライアントに伝達されません。
ここでの設定ミスは何ですか?