This is not really "sieve-ing" per the article, but what prevents me from running another process that periodically queries the data in a cache? Like just running a celery queue in Python that continually checks the cache for out of date information constantly updating it? Is there a word for this? Is this a common technique?
leoqa|2 years ago
In some ways, caching can be seen a prediction problem. And the cache hit rate is the error as we lag the previous history at time T. Blending load over time is effectively what these various cache algorithms do to avoid overfitting.
aleksiy123|2 years ago
Tho potentially just refreshing out of date data in the cache could increase effectiveness given that general assumption of the cache is whats in the cache will probably be used again.
I called it a periodically refreshing cache when I wrote one. Not sure if there is a more formal name.
toast0|2 years ago
ImPostingOnHN|2 years ago
aleksiy123|2 years ago