Using CacheManager, how would you best go about implementing this scenario, where the cache instance contains data, that can take a long time to get from a slow source?
I never want the users to wait for the cache to populate (I am not concerned about first load)
I can think of two ways, but not sure if they are possible with CacheManager:
"Scheduled" refresh
- Set the cache instance to expire after 60 minutes
- Every 15 minutes, schedule something to refresh the cache instance
Refresh on expiry
- When cache instance expires, fire an event that refreshes the data. While the data is refreshing (or if it fails to refresh), the cache instance still returns the "stale" data.
What is technically possible with Cachemanager, and which approach works best - if at all?
Regarding your second option, "Refresh on expiry", this doesn't work because CacheManager doesn't return the cached value if the item expired. And, while you "refresh" the cache, you'd eventually get a lot of cache misses from other callers.
My suggestions:
If you have only a small amount of keys cached for 60 minutes and they all "work the same", just spin up a background task which runs async to your process and refreshes the cache every 15 minutes.
If you have many keys which can vary a lot in terms of expiration, you could cache the data with 60 minutes expiration and store a secondary key (a fake key with no actual value) with a 15 minutes expiration. Then, if the fake key expires, refresh the actual key/value... As
key
for the fake one, use a prefix+actual key for example and then listen toOnRemove
event for example.Quick example program
This even works with Redis if keyspace notifications are enabled.