We are using Spring Session management with GemFire for Session
handling. We are doing it for container deployment where one complete transaction will be processed by multiple containers. But when we are doing multiple transactions simultaneously there are random situations were the same session id is used for different transactions.
Is there any server-specific cache mechanism inside Spring Session which can cause this issue?
We can't rely on server since we use a non-sticky session approach
GemFire version being used is 2.1.2
release. The session object is using delta serialization and the objects inside the session is using PDX serialization.
Any help you can provide is appreciated.