How can I turn off Data Cache Reads and Writes?

I’m getting billed for more than I feel comfortable with for Data Cache Reads and Writes. I have removed all “revalidate” parameters in my application.

How do I completely turn off Data Cache for my Next.js app?

Hi @connor11528. The granular Vercel Data Cache introduced with the App Router is still in public beta and not being charged. You can opt out of fetch caching with export const fetchCache = 'force-no-store' to disable Vercel Data Cache in your Next.js app.

If you’re trying to reduce your billable data cache reads and writes, there are a number of strategies and things to consider. You can find details and tips for optimizing data cache usage here:

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.