High ISR Writes
Unanswered
Ratonero Valenciano posted this in #help-forum
Ratonero ValencianoOP
We have a large website with millions of visitors, and we implemented ISR a few months ago. All pages have
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.
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 [];
}