Preventing Cache Stampedes and Thundering Herds
Learn what a cache stampede is, why it overwhelms your database when a popular key expires, and the locking and refresh techniques that keep your backend safe under load.
Preventing Cache Stampedes and Thundering Herds is a free Redis Caching & Messaging (Pub/Sub, Streams) lesson on CoddyKit — lesson 4 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Redis Caching & Messaging (Pub/Sub, Streams) learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.
What Is a Cache Stampede?
A cache stampede (or thundering herd) happens when a popular cached key expires and many requests miss the cache at the same moment. They all rush to the database to rebuild the value, overwhelming it.
Why It Is So Dangerous
Under high traffic, hundreds or thousands of concurrent misses can hit the database in milliseconds. The backend that normally serves zero load for that key suddenly takes the full firehose, causing latency spikes or outages.
The Naive Cache-Aside Flow
The basic pattern reads the cache, and on a miss queries the DB and stores the result. Every concurrent miss runs this DB query — that is the vulnerability.
Solution 1: A Recompute Lock
Let only the first missing request rebuild the value while others wait or serve stale. Redis SET NX grants a short-lived lock to exactly one client.
SET lock:product:42 "1" NX EX 10How the Lock Flow Works
On a miss:
- Try to acquire the lock with
SET NX - If you got it, query the DB and repopulate the cache
- If not, briefly wait and re-read the cache
Only one DB query runs per expiry.
Solution 2: Stale-While-Revalidate
Store the value with a logical expiry earlier than its physical TTL. When the logical time passes, serve the stale value immediately and refresh it in the background, so users never wait on a miss.
Solution 3: Early Probabilistic Expiry
Each request, with a small growing probability as expiry nears, voluntarily refreshes the key before it dies. This spreads recomputation across time so the herd never forms.
Adding Jitter to TTLs
If many keys are written together (e.g. on deploy) they expire together, causing a synchronized stampede. Add random jitter to each TTL so expiries spread out.
SET product:42 "..." EX 305
SET product:43 "..." EX 318Releasing the Lock Safely
After rebuilding, delete the lock. Give it a short TTL too, so a crashed worker does not hold it forever and block refreshes.
DEL lock:product:42Choosing a Strategy
Guidelines:
- Lock: simplest, briefly delays some requests
- Stale-while-revalidate: best UX, needs background refresh
- Probabilistic + jitter: smooths load, no waiting
Combine them for very hot keys.
Negative Caching
A related danger is the cache penetration miss: many requests for a key that does not exist in the DB always miss the cache and hammer the backend. Cache the not-found result briefly too, so repeated lookups are absorbed.
SET product:9999 "__NULL__" EX 30Quick Check
Test your stampede-prevention knowledge.
Recap
You learned to stop cache stampedes:
- A stampede floods the DB when a hot key expires
- A
SET NXrecompute lock limits rebuilds to one client - Stale-while-revalidate serves old data while refreshing
- Probabilistic early expiry spreads recomputation out
- TTL jitter prevents synchronized mass expiry
Frequently asked questions
Is the “Preventing Cache Stampedes and Thundering Herds” lesson free?
Yes — the full text of “Preventing Cache Stampedes and Thundering Herds” is free to read here on the web, and the Redis Caching & Messaging (Pub/Sub, Streams) course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Redis Caching & Messaging (Pub/Sub, Streams) course, upgrade to CoddyKit PRO.
What will I learn in “Preventing Cache Stampedes and Thundering Herds”?
Learn what a cache stampede is, why it overwhelms your database when a popular key expires, and the locking and refresh techniques that keep your backend safe under load. You practise Redis Caching & Messaging (Pub/Sub, Streams) with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.
Do I need any experience to start Redis Caching & Messaging (Pub/Sub, Streams)?
No prior experience is required. Redis Caching & Messaging (Pub/Sub, Streams) on CoddyKit is structured for beginners through advanced learners; this is — lesson 4 of 4, so you can start here or from the beginning and move at your own pace.
How long does the “Preventing Cache Stampedes and Thundering Herds” lesson take?
Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.
Can I write and run code in this Redis Caching & Messaging (Pub/Sub, Streams) lesson?
Yes. Every Redis Caching & Messaging (Pub/Sub, Streams) lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.
All lessons in this course
- Why Cache? Introduction to Caching
- Implementing Basic Cache Patterns
- Cache Eviction and Expiration
- Preventing Cache Stampedes and Thundering Herds