All glossary terms
Optimize

CDN edge

A CDN edge is one of the geographically distributed points-of-presence operated by a content delivery network — typically hundreds of locations worldwide where static and cacheable content is served from the location closest to the user. The edge layer cuts latency dramatically vs origin-served content and offloads origin traffic.

Modern CDN edges do more than cache static assets: they terminate TLS, run edge functions, handle image transformations, perform redirects, route requests to the optimal origin, and apply security rules (WAF, bot detection). The major CDNs (Cloudflare, Fastly, Akamai, CloudFront, Bunny) differ in network footprint, pricing, and runtime capability rather than core caching. For most apps, the right architecture is: static assets cached aggressively at edge, dynamic responses cached selectively (with stale-while-revalidate), and edge functions handling the lightweight personalisation that turns 'cached HTML' into 'feels-personal HTML'.

Related terms