Cache Eviction - CI/CD用語集の定義
cache evictionは、容量上限のもとで空きを作るためにエントリを削除することで、LRU、LFU、FIFOなどのポリシーによって管理されます。小さすぎるキャッシュはホットなエントリを早く追い出し、ヒット率を落としてCIキャッシュの高速化を損ないます。
関連ガイド
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…