How to set dirty flag for an only few entity in coherence cache. So, cache will load it back in the background or after sometime.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t arbitrarily have the cache refresh a sub-set of entities.
The only thing that comes close to what you describe is refresh-ahead caching, which will refresh entries before they expire if they are being accessed. If not they will expire and be reloaded on the next get.
If this doesn’t meet your needs you’ll need to have another process perform the updates for you.