Cache Stampede - CI/CD用語集の定義
cache stampede(dogpile効果)は、人気のキャッシュキーが失効し、並行するリクエストがそろってミスして同じ値を再計算しようとオリジンに殺到するときに起こります。ロック、事前の再計算、TTLのずらしがこれを防ぎます。
関連ガイド
Thundering Herd - CI/CD Glossary DefinitionA thundering herd is many clients hitting a resource at the same instant - a cache expiry or recovery - overw…
TTL - CI/CD Glossary DefinitionTTL is how long a cached entry or DNS record stays valid before refresh. Too long serves stale data; too shor…
Write-Through Cache - CI/CD Glossary DefinitionA write-through cache writes data to the cache and the backing store at the same time, so the cache is never…