Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pages/cloudflare/caching.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ import { Tabs } from "nextra/components";

## Caching

<Callout type="info">
Everything in this page only concerns SSG/ISR and the data cache, SSR route will work out of the box without
any caching config.
</Callout>

Next.js offers multiple ways to improve an application's performance by [caching](https://nextjs.org/docs/app/building-your-application/data-fetching/fetching-caching-and-revalidating#caching-data) routes and network requests. An application will try to pre-render and cache as much data as possible during build-time to reduce the amount of work required when serving a response to a user.

The cache data are updated using revalidation, either periodically or on-demand:
Expand All @@ -26,11 +31,6 @@ The adapter provides several implementations for each of those components config

This guide provides guidelines for common use cases before detailing all the configuration options.

<Callout type="info">
Everything in this page only concerns SSG/ISR and the data cache, SSR route will work out of the box without
any caching config.
</Callout>

### Guidelines

#### Small site using revalidation
Expand Down
Loading