How to tune ISR revalidation in Next.js
· 1 min read · by Member
nextjsisrperformance
Tuning ISR revalidation
ISR's revalidate is a budget: how stale are you willing to be, and how often do
you want to pay the rebuild cost?
Rules of thumb
- Blog posts:
3600(1 hour) is usually fine - Lists/feeds:
300–900depending on publish cadence - Landing pages: as short as
60if trafficked
Anti-patterns
Do not pair ISR with per-request cookies — you'll fragment the cache and defeat the point.