Cache Eviction - Definição do Glossário de CI/CD
Cache eviction é a remoção de entradas para liberar espaço sob um limite de capacidade, governada por uma política como LRU, LFU ou FIFO; um cache pequeno demais expulsa entradas quentes cedo, derrubando a taxa de acerto e minando os ganhos de velocidade do cache de CI.
Guias relacionados
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…
Cache Key - CI/CD Glossary DefinitionA cache key is the identifier a value is stored and looked up under. In CI a key hashed from lockfiles and OS…
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…