Cache hit ratio

Cache hit ratio is the share of requests a cache answers itself instead of forwarding to the origin: hits ÷ (hits + misses). It's the single most telling CDN metric because it's three metrics in one — speed (a miss is 3.5× slower at the median, per our measurement), cost (misses consume origin compute and egress) and resilience (a warm cache absorbs spikes your origin can't).

Request vs. byte hit ratio

Request hit ratio counts requests; byte hit ratio counts transferred bytes. A site can show 95% request hit ratio while large, rarely-cached downloads push the byte hit ratio far lower. For visitor experience watch the request ratio; for egress bills, the byte ratio.

What "good" looks like

The levers that raise it

In rough order of impact: make HTML cacheable at the edge (Cache-Control / s-maxage, CDN cache rules), clean up your cache key (strip tracking parameters), avoid hit-ratio-shattering Vary values, purge narrowly instead of purging everything, enable tiered caching, and warm the URLs organic traffic doesn't keep resident. The full playbook with measurement instructions per CDN is in our cache hit ratio guide.