Feb 6 · 2 min read · Cache is simply faster storage located closer to the computation. Where Cache Lives ? Cache Read Patterns 1. Cache-Aside (Lazy Loading) This is the most common pattern in production. The application controls the cache: 2. Read-Through Cache Th...
Join discussionDec 12, 2024 · 4 min read · A cache stampede is what can happen in a system that handles a massive number of concurrent requests when a cache entry expires and multiple requests try to re-read it from the database at the same time. There are ways of mitigating this effect, prob...
Join discussion