Warm Cacheとは何か?
Warm cacheは、現在のワークロードが必要とするエントリを含んでいるため、高い割合のリクエストが直接そこから提供されます。ほとんどのルックアップがヒットするため、latencyは低く保たれ、バッキングストアへの負荷が軽減されます。Cacheは、使用を通じて自然に、あるいはpreloadingによって意図的に温まります。
なぜ重要か
Latchkeyのrunnerでは、warm dependency cacheを復元することは、buildが再び取得するのではなく以前のダウンロードを再利用することを意味し、これはCIの所要時間に対する最大級の単一のレバーの1つです。
関連ガイド
What Is a Cold Cache?A cold cache is one that is empty or freshly started, so early requests miss and must be served from the slow…
What Is a Cache Hit?A cache hit occurs when requested data is found in the cache and served directly, avoiding the slower trip to…
What Is Cache Warming?Cache warming is the deliberate preloading of a cache with likely-needed data before traffic arrives, so earl…