Description
Currently all read/write operations for cache entry value use 'synchronized(this)' on cache entry. This can cause very bad concurrency in scenarios when many threads try to read the same entry, or entry read operation suould wait for some long-running update (e.g. EntryProcessor in atomic cache is executed while entry lock is held).
Attachments
Issue Links
- is related to
-
IGNITE-4932 Try to get rid of blocking synchronization on cache entry for cache.get operation
- Resolved