You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/cloudflare/caching.mdx
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,9 @@ The `@opennextjs/cloudflare` caching supports rely on 3 components:
16
16
- A **Queue** to synchronize and deduplicate time-based revalidations
17
17
- A **Tag Cache** for On-demand revalidations via [`revalidateTag`](https://nextjs.org/docs/app/api-reference/functions/revalidateTag) and [`revalidatePath`](https://nextjs.org/docs/app/api-reference/functions/revalidatePath).
18
18
19
+
You can also enable cache interception, to avoid calling the `NextServer` and thus loading the javascript associated with the page. It can slightly improve cold start performance for ISR/SSG route on cached routes.
20
+
As of now, cache interception does not work with PPR and is not enabled by default.
21
+
19
22
The adapter provides several implementations for each of those components configured in `open-next.config.ts`.
20
23
21
24
This guide provides guidelines for common use cases before detailing all the configuration options.
0 commit comments