Reference Guide to Caching for Modern NextJS

Pro Members Only

This lesson is available if you have an active subscription.

Alternatively, some member might be able to gift it to you.

If you already have a subscription, you can sign in.

Professional NextJS Lessons

1.Course Intro
free
⏱️ 2:05
2.Get Setup
free
⏱️ 2:05
3.Project Template
free
⏱️ 5:45
4.Introducing FullStack React
free
⏱️ 4:57
5.App Router Reference
free
⏱️ 7:08
6.NextJS Server vs. "use client" Rendering
⏱️ 5:01
7.Nesting Server and Client Components
⏱️ 8:51
8.Client Only Components
⏱️ 3:48
9.Global CSS in NextJS
⏱️ 6:30
10.CSS Modules and SASS
⏱️ 4:15
11.Tailwind CSS
⏱️ 5:17
12.NextJS Custom Fonts
⏱️ 4:08
13.Static vs Dynamic Rendering
⏱️ 4:55
14.NextJS Link Component
⏱️ 3:20
15.NextJS Link Prefetching
⏱️ 5:49
16.Navigation Scroll with Link
⏱️ 2:02
17.Replace Navigation History
⏱️ 1:35
18.NextJS Image Component
⏱️ 7:01
19.Dynamic Image URLs
⏱️ 5:34
20.Safe Colocation with Private Folders
⏱️ 2:12
21.NextJS Route Groups
⏱️ 3:07
22.Dynamic Routes
⏱️ 5:37
23.NextJS API Routes
⏱️ 6:03
24.NextRequest and NextResponse
⏱️ 2:41
25.Cookies in API Handlers
⏱️ 4:25
26.React Suspense Simplified
⏱️ 2:23
27.Power of Suspense Boundaries
⏱️ 3:52
28.use Promises
⏱️ 3:24
29.Stream Promise Results from Server to Client
⏱️ 3:03
30.use Requires a Cached Promise
free
⏱️ 2:30
31.Suspense Error Boundaries
⏱️ 4:42
32.React Server Functions
⏱️ 4:50
33.Server Actions for Powerful Forms
⏱️ 5:35
34.useActionState to Simplify Form Actions
⏱️ 6:38
35.React Serializable Types
⏱️ 2:42
36.Create Dynamic Images with NextJS ImageResponse
⏱️ 5:54
37.Deploy NextJS Application to Production
⏱️ 3:51
38.NextJS Environment Variables Masterclass
⏱️ 3:50
39.Deploying and Managing Environment Variables
⏱️ 4:38
40.Using Databases for Dynamic Server Side State
free
⏱️ 7:34
41.Mastering NextJS Layout Files
⏱️ 4:54
42.Client State Management with NextJS
⏱️ 3:48
43.Client State Management In Action
⏱️ 8:04
44.Using Client State Management Libraries
⏱️ 5:25
45.Detecting Server vs Client Runtime and useEffect
⏱️ 4:33
46.Demystifying ISR vs SSR vs SSG
⏱️ 3:07
47.Static Site Generation or SSG with NextJS
⏱️ 3:16
48.Incremental Static Regeneration (ISR) Simplified
⏱️ 2:51
49.API Routes Caching with NextJS
⏱️ 3:05
50.Reference Guide to Caching for Modern NextJS
⏱️ 2:47
51.Setup a BASE_URL for client and server
free
⏱️ 2:54
52.Creating a sitemap.xml
⏱️ 3:29
53.Provide metadata with NextJS
⏱️ 6:54
54.Created High Quality Social Media Previews
⏱️ 7:38

Reference Guide to Caching for Modern NextJS

Subscription Required

You must have an active subscription to access this content.
If you already have a subscription, you can sign in.

For Page Routes

For pages can think of nextjs caching as nothing more than a rendering strategy.

  • SSG ➪ static ➪ Cached Indefinitely
  • SSR ➪ dynamic ➪ Never Cached
  • ISR ➪ static, then, dynamic ➪ Cached with revalidate timeout

Golden Rule for Testing Caching

Always, Always, Always test caching by running a production build.

As an example the following simple page works fine in development (new random winners on reload), but is stuck to a single random value in production.

app/page.tsx
import styles from "./page.module.css";

export default async function Page() {
const response = await fetch(process.env.NEXT_PUBLIC_API_URL + "/random");
const { randomNumber } = await response.json();
return (
<div className={styles.root}>
<h1 className={styles.title}>Random Winner 🎉</h1>
<p className={styles.paragraph}>{randomNumber}</p>
</div>
);
}

A potential fix we already know is to mark the fetch call as not cached.

const response = await fetch(process.env.NEXT_PUBLIC_API_URL + '/random', {
cache: 'no-store',
});

Simple Guide

I could bore you to death with the hundreds of ways you can configure the cache in nextjs but let’s provide you with a simple guide to get through 99% of the issues.

Introducing, the three stages of caching.

  1. Make your life easy:
export const dynamic = 'force-dynamic';
  1. Save some money:
export const revalidate = 3600;
  1. Save ALL the money:
export const dynamic = 'force-static';
javascript
typescript
react
playwright

Enjoy free content straight from your inbox 💌

No spam, unsubscribe at any time.

Transcript

00:00

A lot of developers struggle with caching in next years, so let's do a quick recap of what we've already learned and how to apply it effectively. For pages, you can think of next year's caching is nothing more than a rendering strategy. With SST, the page is rendered at build time and then caged indefinitely. This is the same as static rendering. With SSR, it is always rendered on request time, so essentially the page output is never caged, and this is the same as dynamic rendering. And finally, we have ISR or incremental static rendering, which is a mix between the two.

00:33

The result is caged, but it comes with the revalidation timeout. Essentially, the page is static initially, but from time to time that static output is refreshed, therefore making it dynamic. The reason why many people struggle with Cing is that it's disabled during development. To demonstrate, consider a simple page where we make a request to an external API to fetch a random number, and then we display that within the user interface as a random winner. Now, this code looks perfectly fine and you think that there is no issue with your logic, but to be sure you test it out during development, and no surprise, it works as expected.

01:06

Every time we refresh the page, we get a new random winner, so you decide to push it to production and call it a day. However, that would be a mistake because you forgot about the aggressive caching optimizations that are built into next js. To demonstrate that, let's run a production build and then start our production server. When you visit the same page on production, it seems to work fine. However, when we refresh, we do not get new random numbers, and you start scratching your head, why did it work in development and not in production? This brings us to the golden rule of caching. In Next, always, always, always validate caching in a production build.

01:40

With this golden rule out of the way, let's just fix this production build. We've already looked at how the fetch requests are caged, and if you don't want them to be cached, you can pass in the option cache, no store. As an aside, the reason why caching is disabled during development is that if caching was enabled, it would make for a very frustrating and confusing developer experience. I could bore you to death with the hundreds of ways that you can configure the caching next years. But let's provide you with a simple guide to get you through 99% of the issues. Here's your simple guide to successfully exploiting next year's caching.

02:12

For fun and profit, it comes in three stages. You can choose to make your life easy. You can choose to save some money, or you can choose to save all the money. If you just want to make your life easy, then mark your route. As force dynamic, you might burn some cash, but at least your application will work. When you are ready to save some money, start sprinkling revalidation timeouts to your routes. This way, your application is still mostly dynamic, but you get to save on some server resources and when you assure that your content is not going to change after a successful build, you can mark your route

02:44

with full static.

Professional NextJS

Professional NextJS

1.Course Intro
free
⏱️ 2:05
2.Get Setup
free
⏱️ 2:05
3.Project Template
free
⏱️ 5:45
4.Introducing FullStack React
free
⏱️ 4:57
5.App Router Reference
free
⏱️ 7:08
6.NextJS Server vs. "use client" Rendering
⏱️ 5:01
7.Nesting Server and Client Components
⏱️ 8:51
8.Client Only Components
⏱️ 3:48
9.Global CSS in NextJS
⏱️ 6:30
10.CSS Modules and SASS
⏱️ 4:15
11.Tailwind CSS
⏱️ 5:17
12.NextJS Custom Fonts
⏱️ 4:08
13.Static vs Dynamic Rendering
⏱️ 4:55
14.NextJS Link Component
⏱️ 3:20
15.NextJS Link Prefetching
⏱️ 5:49
16.Navigation Scroll with Link
⏱️ 2:02
17.Replace Navigation History
⏱️ 1:35
18.NextJS Image Component
⏱️ 7:01
19.Dynamic Image URLs
⏱️ 5:34
20.Safe Colocation with Private Folders
⏱️ 2:12
21.NextJS Route Groups
⏱️ 3:07
22.Dynamic Routes
⏱️ 5:37
23.NextJS API Routes
⏱️ 6:03
24.NextRequest and NextResponse
⏱️ 2:41
25.Cookies in API Handlers
⏱️ 4:25
26.React Suspense Simplified
⏱️ 2:23
27.Power of Suspense Boundaries
⏱️ 3:52
28.use Promises
⏱️ 3:24
29.Stream Promise Results from Server to Client
⏱️ 3:03
30.use Requires a Cached Promise
free
⏱️ 2:30
31.Suspense Error Boundaries
⏱️ 4:42
32.React Server Functions
⏱️ 4:50
33.Server Actions for Powerful Forms
⏱️ 5:35
34.useActionState to Simplify Form Actions
⏱️ 6:38
35.React Serializable Types
⏱️ 2:42
36.Create Dynamic Images with NextJS ImageResponse
⏱️ 5:54
37.Deploy NextJS Application to Production
⏱️ 3:51
38.NextJS Environment Variables Masterclass
⏱️ 3:50
39.Deploying and Managing Environment Variables
⏱️ 4:38
40.Using Databases for Dynamic Server Side State
free
⏱️ 7:34
41.Mastering NextJS Layout Files
⏱️ 4:54
42.Client State Management with NextJS
⏱️ 3:48
43.Client State Management In Action
⏱️ 8:04
44.Using Client State Management Libraries
⏱️ 5:25
45.Detecting Server vs Client Runtime and useEffect
⏱️ 4:33
46.Demystifying ISR vs SSR vs SSG
⏱️ 3:07
47.Static Site Generation or SSG with NextJS
⏱️ 3:16
48.Incremental Static Regeneration (ISR) Simplified
⏱️ 2:51
49.API Routes Caching with NextJS
⏱️ 3:05
50.Reference Guide to Caching for Modern NextJS
⏱️ 2:47
51.Setup a BASE_URL for client and server
free
⏱️ 2:54
52.Creating a sitemap.xml
⏱️ 3:29
53.Provide metadata with NextJS
⏱️ 6:54
54.Created High Quality Social Media Previews
⏱️ 7:38