Next.js Discord

Discord Forum

High ISR Writes

Unanswered
Ratonero Valenciano posted this in #help-forum
Open in Discord
Ratonero ValencianoOP
We have a large website with millions of visitors, and we implemented ISR a few months ago. All pages have generateStaticParams() which return empty array [] to allow for ISR.

We're seeing super high ISR writes usage and very low ISR reads. I wanted to understand what could be causing so frequent writes and how can I optimize it to reduce our costs.


page.tsx
export function generateStaticParams() {
  return [];
}

0 Replies