Add ability to increase fetch cache size #48324
Replies: 25 comments 18 replies
-
Anyone looking into this? 1 MB is kind of low for our use case as well. Some things we can split but some we can't. |
Beta Was this translation helpful? Give feedback.
-
According to my interactions with Vercel's support team, this should be possible by creating custom configs in the api routes as shown here https://nextjs.org/docs/api-routes/request-helpers#custom-config. I have not tested this yet, however Vercel has expressed that any options from previous versions of NextJS should still be available for the app/api route handlers unless marked with "legacy" or "deprecated", or something to that extent. |
Beta Was this translation helpful? Give feedback.
-
Hack: Edit these:
e.g. to this, which increases the size AND gives a server side log if it is exceeded and by how much
Run this:
Commit the generated patch file In Vercel change Install Command to As an aside: This is it showed me than in Vercel, cached values survive deployments (because only the > 2Mb thing was fetched, the others were not). Which is really nice. |
Beta Was this translation helpful? Give feedback.
-
This is a very important feature, if you can't use the |
Beta Was this translation helpful? Give feedback.
-
any solid flow or is there any configurable settings for this in place? |
Beta Was this translation helpful? Give feedback.
-
Just came across this, Limit is increased to 2MB, thats it |
Beta Was this translation helpful? Give feedback.
-
I understand that unstable_cache is in a similar situation. If you want an individual data cache rather than a Route cache, this may be suitable for you since it has a more relaxed size limit and is stable rather than unstable. |
Beta Was this translation helpful? Give feedback.
-
I faced with same issue. I have a non-optimized API endpoint that I don't control. I want to fetch data, and process it(leave only what I need). |
Beta Was this translation helpful? Give feedback.
-
This is an important thing to have. I'm also trying to cache a subset of data from an endpoint I can't optimise. This is possible in the pages router but not the app router.. No idea why this has been open for 6 months without a response. @leerob sorry to tag you mate, but is there any magic we can do in the meantime to get this working in app router? |
Beta Was this translation helpful? Give feedback.
-
i'm facing the same issue here. next.js docs should AT LEAST warn you about the 2mb cache limit for fetch requests |
Beta Was this translation helpful? Give feedback.
-
After lots of fiddling with this value, my personal recommendation to everyone who stumbles upon this limit is to abstain from raising it. If you need to cache more than 2MB, try to refactor whatever there is to refactor. In my own case, I was loading a huge JSON and I ended having all kinds of problems (I ended creating |
Beta Was this translation helpful? Give feedback.
-
I have a photography blog with a lot of pages with a lot of image content. I come from Gatsby and would love to still use the advantage of the static rendering. I've got the same error by fetching all the posts :( |
Beta Was this translation helpful? Give feedback.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
-
We are getting data from a 3rd party API which is 2.1MB big... juuust above the limit. I guess we'll now just store it in a dynamodb table with a TTL |
Beta Was this translation helpful? Give feedback.
-
why this value is 1MB or 2MB? |
Beta Was this translation helpful? Give feedback.
-
For anyone who dont need the cache by default, you can use the option You can read more about this here : https://nextjs.org/docs/app/building-your-application/data-fetching/fetching-caching-and-revalidating#opting-out-of-data-caching |
Beta Was this translation helpful? Give feedback.
-
why do we need to do use some hacky solution to get this to work, increasing the cache size shouldnt be that much of an issue, right? why is it limited to 2mb |
Beta Was this translation helpful? Give feedback.
-
The simplest workaround to deal with 2 mb limit with Next 14.2.5 is to use custom cacheHandler in next.config.js . Limit is not being checked if custom handler is used. You can implement your own handler or use third party handlers or just reimport default file-system-cache.js from Next distrib like this:
|
Beta Was this translation helpful? Give feedback.
-
For people who don't want to implement a custom cache handler, if you're just above the cache limit, you can try minifying and then de-minifying your keys if your response has a lot of them. You can also try gzip compression using https://www.npmjs.com/package/zlib . |
Beta Was this translation helpful? Give feedback.
-
each days goes by and I discover some crazy stuff Next team is doing, and not in a good way. So no cache where it matters the most, fine. Thanks for nothing. |
Beta Was this translation helpful? Give feedback.
-
Goals
Add the ability to set a custom maximum size for the fetch cache
Non-Goals
Any implications on platforms like Vercel. Those platforms probably need a way to cap the cache size anyway otherwise users could abuse them.
Background
We are working on a self-hosted backoffice application in which one of our route handler has to request an endpoint which returns a 4MB+ payload. Sadly we can't use the built-in cache of Next.js 13/app directory since it's capped to 1MB.
We would like to be able to set a custom maximum size for this cache.
Proposal
This configuration could probably fit into a Route Segment Option.
Beta Was this translation helpful? Give feedback.
All reactions