-
Caching: Stale while Revalidate
Caching strategy, I tried to understand Situation/context: I got to know about a situation called cache stampede. In this scenario, a lot of requests when misses the cache and all of them hits the DB to get the data. I got to know about polling locks and stale while revalidate to mitigate this issue. How…