API Routes Caching with 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
🚨 Work In Progress 🚧
Subscribe for Launch

API Routes Caching with NextJS

Subscription Required

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

Not Cached By Default

The good thing about api routes in nextjs is that they not cached by default. This is because in normal use cases we invoke APIs for doing something dynamic so it would be bad if api route handler doesn’t execute because of some weird caching.

Note: As with all things caching we need to build our application to validate our knowledge because caching is disabled during development.

As a demonstration the following POST is not cached even though there is nothing dynamic in the code.

app/api/post/always/route.ts
import { NextResponse } from "next/server";

export async function POST() {
console.log('Running POST');
return NextResponse.json({
message: "Hello",
});
}

And the following GET is not cached either.

app/api/get/always/route.ts
import { NextResponse } from "next/server";

export async function GET() {
console.log('Running GET');
return NextResponse.json({
message: "Hello",
});
}

ONLY GET can be cached

In fact the only method that you can even enable caching for is the HTTP GET. For this we can use the route config options that we’ve also seen for page files.

For example we can set dynamic = 'force-static'.

app/api/get/once/route.ts
import { NextResponse } from "next/server";

export const dynamic = "force-static";

export async function GET() {
console.log("Running GET");
return NextResponse.json({
message: "Hello",
});
}

Or even set a revalidate duration (in seconds).

app/api/get/revalidate/route.ts
import { NextResponse } from "next/server";

export const revalidate = 10;

export async function GET() {
console.log("Running GET");
return NextResponse.json({
message: "Hello",
});
}

DON'T Mix cached GET with other handlers

Note that if you put any other methods other than GET in a route file then even the GET is not cached.

app/api/mix/route.ts
import { NextResponse } from "next/server";

// Since this file exports a `POST`, the `dynamic` option will have no effect
export const dynamic = "force-static";

export async function GET() {
console.log("Running GET");
return NextResponse.json({
message: "Hello",
});
}

export async function POST() {
console.log("Running POST");
return NextResponse.json({
message: "Hello",
});
}

To get around this, move your cached GET handler into a different route files from the other handlers.

javascript
typescript
react
playwright

Enjoy free content straight from your inbox 💌

No spam, unsubscribe at any time.

Transcript

00:00

The good thing about API routes in XDS is that they are not GED by default. This is because in normal use cases we invoke APIs for doing something dynamic, so it would be bad if the API route handler doesn't execute because of some weird ging. As a demonstration, we create a simple route handler that exports a post method. As you can see, there is nothing dynamic about this code. It'll always return the same JSN payload. However, this will not be cd. As with all things caching, we need to build our application to validate our knowledge. Because caching is disabled during development with our production app running, we can verify

00:33

that this particular request is never going to get caged because every single time we send a new request, we get a new log on the console. In fact, the only method that you can even enable caching for is the HTP get. For this, we can use the route config options that we've also previously seen for page files. To start off, we create a new route handler and export a get method just like we did for the post and once more. There is nothing dynamic in this code. If you run a production application and invoke this method, you can see that it is executing every single time. There is no caching that is going to happen by default.

01:06

Let's duplicate a route into a new file. To demonstrate the full static option, we mark this new route file to be fully caged by exporting a variable called dynamic and setting its value to four static. This will turn this file into a static route and we can even verify it from the build output. You can see that this new route that we created is static, whereas the previous one without the four static option was considered dynamic. Let's verify this by running our production build. Now when we execute, you can see that we are not getting anything on the console because that function was only executed during bill time and the result was GD

01:39

and we are only getting the caged response. The other option related to caching that we've looked at is for incremental static regeneration, which is revalidate. We're setting the revalidate value over here to 10 seconds. So this route will be static initially, but after 10 seconds since the last response, it'll execute again to get an updated result. And we can see this in the build output as well. The route is originally static, but it has a revalidate time for 10 seconds. So if you test this route within the production build for application, the function will only execute if the last time it was invoked is more than 10 seconds ago.

02:12

So while that timeout hasn't expired, we make the request again and again and we get no log. But after the 10 seconds, we do get a log on the console. Note that if you put any of the methods other than get in a route file, then even the GET is not going to get ged. We know that right now the get within this file is going to be GED because we are marking it as for static. However, if you export a post method from the same file, then the whole route is marked as dynamic and even the get is no longer caged. And we can verify this from the production builder of our application. We know that other methods like post

02:43

and put on a caged, which is why whenever we call them we see a new log on the console. But because we put this post in the same file as the get even the get is not going to be caged. So when we invoke the get, we see you a new log on the console for every invocation to get around this, you can put your caged, get handlers in separate routes than your other handlers.

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
🚨 Work In Progress 🚧
Subscribe for Launch