CONCEPT Cited by 1 source
Power-law URL traffic¶
Definition¶
Power-law URL traffic is the empirical observation that a small fraction of URLs on a multi-page site receives the overwhelming majority of requests. Per the 2026-02-24 vinext launch: "for a site with 100,000 product pages, the power law means 90 % of traffic usually goes to 50 to 200 pages." That is, ~0.05–0.2 % of URLs cover ~90 % of traffic.
Load-bearing consequence¶
Any pre-computation cost that scales with page count (pre-rendering, pre-warming, cache-priming, index-updating) can be cut by orders of magnitude by addressing only the high-traffic head and leaving the long tail to on-demand paths. Canonical wiki instance: TPR cuts a 100,000-page site's pre-render cost from 100,000 renders to ~184 — while still covering 90 % of user traffic with a cache hit on the first request.
Why "power law" specifically¶
URL popularity on a product / content site resembles a Zipf / power-law distribution rather than a uniform one — most products are rarely visited; a few are hot (new releases, front-page features, deals). This isn't unique to web traffic; it's the same shape behind the 80/20 rule, the ARC / LRU caching literature, working-set theory, and the tail-latency-at-scale discipline.
Seen in¶
- sources/2026-02-24-cloudflare-how-we-rebuilt-nextjs-with-ai-in-one-week — the motivating observation behind TPR.
Related¶
- concepts/traffic-aware-prerendering — the pre-rendering strategy that exploits this distribution.
- concepts/build-time-scales-with-page-count — the pathology avoided by the power-law observation.
- concepts/hot-path — sibling "small fraction of requests dominate" observation.
- concepts/cloudflare-zone-analytics — the data source that lets the edge actually measure the distribution.