Write-Through Cache - CI/CD用語集の定義
write-through cacheは、書き込みのたびにキャッシュと基盤ストアの両方を同期的に更新し、両者を常に一貫させます。読み取りは高速かつ新鮮なままですが、書き込みは遅いストアのレイテンシを払います。
関連ガイド
Cache Eviction - CI/CD Glossary DefinitionCache eviction removes entries to make room when a cache is full, using a policy like LRU. Aggressive evictio…
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…
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…