TTL - CI/CD用語集の定義
TTL(Time To Live)は、キャッシュされた値、DNSレコード、トークンが失効して再検証が必要になるまでに割り当てられた寿命です。これを調整することは新鮮さと負荷のトレードオフになり、同期した失効はthundering herdを引き起こすことがあります。
関連ガイド
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 Stampede - CI/CD Glossary DefinitionA cache stampede is many requests all missing the same expired cache key at once and racing to recompute it,…
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…