Pick one and press Start, then click Next › to step through it.
Watch for
The burst sending a flood of duplicate loads to the store when the key isn't cached — the thundering herd.
More about this scenario
You'll learn
How read and write strategies and TTLs interact — and what a cache stampede looks like without protection.
How it runs
WRITE under write-through updates the store and the cache together (safe, slightly slower). READ is a cache-aside hit. TICK ages entries past their TTL. The BURST fires many concurrent reads at a key; with no stampede protection each miss hits the store.