Derek Goodwin
Derek Goodwin

Reputation: 1

C# hazelcast client near cache invalidation not working

Have problems with client near cache invalidation not working correctly. We have one client calling remove from a map but then another client calls get and still gets the old version. Using simple remove and get. InvalidateOnChange is set to true on client nearcache config

Seems to work OK with out near cache configured.

Upvotes: 0

Views: 88

Answers (1)

Kamran Babar
Kamran Babar

Reputation: 1

The issue appears to be with client near cache invalidation.

The best way to handle this issue is to troubleshoot it. First, make sure the invalidateOnChange is set to true in the near cache configuration. Then, check to make sure the Hazelcast setting on the client side is properly configured. Finally, review the logs to make sure the client is actually seeing the update that the other client is doing. If the issue still persists after these checks, then it is good to open a ticket with Hazelcast support in order to get help from their developers.

Upvotes: 0

Related Questions