Next.js Discord

Discord Forum

How does cache work in Next.js

Unanswered
Horned oak gall posted this in #help-forum
Open in Discord
Horned oak gallOP
With the default settings(without { cache: 'no-store' }) and with this [fetch example](https://github.com/relayjs/relay-examples/blob/main/issue-tracker-next-v13/src/relay/environment.ts#L28). My benchmark on the Request Per Second is roughly 150 rps.
With cache disabled(with { cache: 'no-store' }), it droped to 7 rps.

My question is, with cache enabled and I make a change in DB and then refresh the page(F5 key in browser), I still see the changes my made instantly. The page looks like [this](https://github.com/relayjs/relay-examples/blob/main/issue-tracker-next-v13/app/issues/%5Bid%5D/page.tsx).

What does the cache actually cache?

2 Replies

Just in case, are you talking about dev mode behavior? Because all routes are dynamic in dev mode
@LuisLl Just in case, are you talking about dev mode behavior? Because all routes are dynamic in dev mode
Horned oak gallOP
It is not in dev mode. I built the app into a standlone mode and it is in staging/half-production enviroment.