Support Incremental Full Route Cache on Dynamic Segments #57961
Unanswered
awinogrodzki
asked this question in
App Router
Replies: 1 comment 10 replies
-
you can *optionally use You just make a page Is this behavior missing anything, or am I missing something? |
Beta Was this translation helpful? Give feedback.
10 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
Before migrating to App Router, I was using Incremental Static Regeneration to generate static pages on the fly.
I am running a CMS app with routes similar to
/blog/[slug]
, which means that I cannot generate pages during build time and cannot useFull Route Cache
that comes with Next.js 13/14I have a single API call during blog post render cycle, which is successfully cached.
Even with this API call coming from cache, my throughput dropped from
250-300 requests/s
to at most10 requests/s
on production instancesThis is a drastic change that has been reflected in infrastructure costs.
It's basically impossible to revert to Incremental Static Regeneration at this moment as most of the new features use App Router.
Are there any plans to bring Full Route Cache to Dynamic Segments?
Beta Was this translation helpful? Give feedback.
All reactions