Request collapsing for ISR cache misses
Vercel's CDN now automatically collapses concurrent ISR cache-miss requests into a single function invocation per region, preventing cache stampedes without requiring configuration.
The Vercel CDN now prevents cache stampedes through on an expired 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.request collapsingIncremental Static Regeneration (ISR) 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 Read more