Cache Stampede - Definição do Glossário de CI/CD
Um cache stampede (efeito dogpile) ocorre quando uma chave de cache popular expira e requisições concorrentes a erram todas juntas, estourando a origem para recomputar o mesmo valor; locking, recomputação antecipada ou TTLs escalonados o previnem.
Guias relacionados
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…