Vercel ChangelogSep 25, 2025, 1:00 PMSachin Raja

Vercel 推出 ISR 快取未命中請求合併機制(Request Collapsing)

Original: Request collapsing for ISR cache misses

In modern web development, Next.js's Incremental Static Regeneration (ISR) is a critical technique for balancing the speed of statically…

Vercel 宣布為增量靜態生成(ISR)引入「請求合併(Request Collapsing)」功能。當多個用戶同時請求一個已過期或未快取的 ISR 頁面時,Vercel 將合併這些併發請求,僅向源頭伺服器發送一次重建請求。這項更新能顯著降低資料庫與 Serverless 函式的負載,並提升高流量期間的網站效能。

In modern web development, Next.js's Incremental Static Regeneration (ISR) is a critical technique for balancing the speed of statically served pages with the need for dynamic content updates. However, on high-traffic websites, when the cache for a popular page expires (a Cache Miss or Stale state), or when a page is first published, hundreds or even thousands of users may simultaneously send requests. In the past, this could cause multiple concurrent requests to punch through to the backend, triggering multiple redundant page re-generations — a phenomenon in system design known as the "Thundering Herd" effect or cache stampede, which places enormous load on Serverless functions, APIs, and databases while incurring unnecessary costs.

Full summary

Free shows the 3-line summary; Pro unlocks the full deep summary (~300 words) so you never have to click through.

See Pro plans →

Want the original English / full article?

Read on Vercel Changelog →

Summaries are AI-generated; the original article is authoritative.