How to inspect that next.js cache?
Unanswered
Transvaal lion posted this in #help-forum
Transvaal lionOP
Is there any way to inspect the cache object so you can monitor how it grows over time? Just during development would be fine.
8 Replies
all cache is stored in .next, except for client cache
Transvaal lionOP
I meant the cache for the server side caching
I believe that is in memory right?
the one you use for fetch cache and unstable_cache
thats stored in .next
hence persists across deployments
Transvaal lionOP
thanks