#Server and Client caching in Next 14 development mode
16 messages Ā· Page 1 of 1 (latest)
š This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord
šµļø Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize
ā
You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)
yes, most of the caching mechanisms are disabled inside dev mode
dived a bit deeper and the reason was that my application uses cookies and headers
yea, even if the page was loaded dynamically it can still be cached. However:
most of the caching mechanisms are disabled inside dev mode
is the data cache technically the same as static rendering ?
when you statically render stuff, then the page exists already in html/css/js. This data is not saved inside the data cache. It's saved inside the full route cache
so i can still revalidate the data cache with revalidatePath which will also update the statically rendered stuff ?
yes, it can still be revalidated. Take a look at this: (see attached)
https://nextjs.org/docs/app/building-your-application/caching
so even if a build the app and a specific route is static, a revalidation still updates it right ?
yes
thank you
its a bit hard to wrap my head around all this caching rendering thing
takes time i guess
yea, sometimes it can be a bit confusing. Thought asking questions and solving problems you will learn more and more. So no worries š
This question has been marked as answered! If you have any other questions, feel free to create another post
[Click here](#1307364885675376681 message)