Cache Hierarchy とは?
Cache hierarchy は、browser、edge、リージョナル shield cache など、レベル別に配置された cache のスタックで、あるレベルで miss したリクエストは次に渡されます。すべてのレベルで miss したリクエストのみが origin に到達します。各層がトラフィックの一部を吸収し、より少ないリクエストしか深くまで進まないようにします。
なぜ重要か
Cache を階層化することで hit の可能性が倍増し、origin に到達する負荷が絶えず縮小します。レベルを理解することで、古いまたは欠落したレスポンスがどこから来ているかを推論できます。
関連ガイド
What Is a CDN Edge?A CDN edge is a geographically distributed cache server that serves content from close to the user, cutting l…
What Is an Origin Server?An origin server is the authoritative source of content that a CDN pulls from and caches, handling requests t…
What Is an Edge Function?An edge function is small code that runs on a CDN edge close to the user, customizing requests and responses…