-
Notifications
You must be signed in to change notification settings - Fork 582
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cache Invalidation Performance #3137
Comments
Currently it will be more efficient to do this via external iteration and calls to |
Having an iteration like
also deserializes values. Can you provide more details about the external iteration you had in mind? |
Hi Chris, is there some update on this topic? Thanks in advance! |
Hi Chris, |
Hi, at my company, we've encountered some issues connected to our cache invalidation logic.
For each cache entry that should be invalidated
We refactor our implementation that
Unfortunately the performance appears to be unchanged.
We then started checking the ehcache code base and realized that both operations (remove and removeAll) also deserialize the cache entry's value everytime either operation is called.
The text was updated successfully, but these errors were encountered: