Write-Through Cache - CI/CD Glossary Definition
A write-through cache updates both the cache and the underlying store synchronously on every write, keeping the two always consistent; reads stay fast and fresh, but writes pay the latency of the slower store.
Related guides
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…