1 min read
The Vercel CDN now prevents cache stampedes through request collapsing on an expired Incremental Static Regeneration (ISR) page into a single function invocation per region. Without collapsing, simultaneous requests each trigger regeneration, wasting compute and overloading backends. With collapsing, one request regenerates the page while others wait and return the cached result.
This improves reliability, reduces backend load, and saves significant compute at scale.
The feature is applied automatically for cacheable routes. Cacheability is inferred from framework metadata, so no configuration is required.
Implementation details are available in the Preventing the stampede: Request collapsing in the Vercel CDN blog post.