spring-projects / spring-data-geode

Spring Data support for Apache Geode
Apache License 2.0
51 stars 39 forks source link

CacheWriter Events Difference Between In Memory Geode vs Server Geode #633

Closed nayakmk closed 1 year ago

nayakmk commented 1 year ago

Hi @jxblum,

When I am running ClientCacheApplication with an embedded/in memory Geode, any create/update to same region cache entry triggers events properly. When I am putting it first time, it sends CREATE event and when I am updating existing cache, it sends UPDATE event. Here clientRegionShortcut is LOCAL. The same events I am also able to receive via CacheWriter and CacheListener.

But for a geode server which is running outside the Spring and I am connecting as a PROXY to that server, any update to Cache is reflecting an event of CREATE only.

SDG: 1.7.1

Regards, Malaya