Warm Cache - CI/CD用語集の定義
warm cache は、build が必要とするエントリで既に populate された cache であるため、実行はすべてを再構築するのではなく高いヒット率で始まります。
warm cache は、build が必要とするエントリで既に populate された cache であるため、実行はすべてを再構築するのではなく高いヒット率で始まります。
warm cache は cache warming 後の目標状態です。最初のコストの高い実行は過去のものとなり、後続の実行はほとんど復元するだけです。
ウォームとコールド
コールド cache は最初の実行で完全な再計算を強制しますが、warm cache は保存された出力を提供します。永続的またはマネージドな runner は、新しいエフェメラルなものとは異なり、job 間で cache をウォームに保ちます。
関連ガイド
Cache Scope - CI/CD Glossary DefinitionCache Scope: Cache scope defines the boundary within which a cache entry is visible and reusable, such as per…
Compile Cache - CI/CD Glossary DefinitionCompile Cache: A compile cache stores the output of compiling a source file keyed by its content and flags, s…
Warm Pool - CI/CD Glossary DefinitionWarm Pool: A **warm pool** is a set of pre-booted runners kept ready so jobs start almost instantly instead o…