ワンクリックで
next-cache-components
Next.js 16 Cache Components - PPR, use cache directive, cacheLife, cacheTag, updateTag
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Next.js 16 Cache Components - PPR, use cache directive, cacheLife, cacheTag, updateTag
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Atlassian CLI (official `acli` binary, GA 2025) for Jira Cloud and org admin tasks from the terminal. Use whenever the user wants to create, view, edit, transition, assign, clone, archive, comment on, link, or bulk-operate on Jira work items; list or manage projects, boards, sprints, filters, dashboards, or custom fields; activate/deactivate users at the org level; or authenticate to Atlassian from a shell or CI pipeline. Triggers on: `acli`, Atlassian CLI, Jira from the terminal, bulk Jira operations, scripting Jira, automate Jira tickets, transition a bunch of issues, create issues from a JSON/CSV file, CI pipeline that touches Jira, log in to Jira CLI, switch Atlassian sites, API-token auth for Jira. Use this skill even when the user does not say the word `acli` — if the task is CLI-driven Jira work, this is the right tool. Do NOT use for: Atlassian MCP server work (that is a different integration), REST-API-only workflows where no CLI is involved, Confluence or Bitbucket command-line needs (acli does not
Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling
Orchestrates in-sprint manual QA per ticket across Stages 1 (Planning), 2 (Execution) and 3 (Reporting). Use for user-story testing, bug retesting, and batch-sprint QA loops. Creates the PBI folder, drives session-start, runs the triage + veto + risk-score decision tree on bugs, produces the ATP + ATR + TC artifacts in the TMS, executes smoke and trifuerza (UI/API/DB) exploration, and files the final QA comment + bug reports. Triggers on: test this ticket, QA this user story, retest this bug, verify bug fix, run exploratory testing, smoke test a feature, process the sprint, next ticket in sprint, generate the SPRINT-N-TESTING framework, resume sprint testing, continue-from a ticket. Do NOT use for Stage 4 TMS documentation + ROI (test-documentation), Stage 5 automation coding (test-automation), Stage 6 regression suite execution (regression-testing), or onboarding a new repo (project-discovery).
Xray Cloud test management CLI for creating tests, managing executions, importing results, and backup/restore operations. Use when the user needs to interact with Xray Cloud API for test case management.
Xray Cloud test management CLI for creating tests, managing executions, importing results, and backup/restore operations. Use when the user needs to interact with Xray Cloud API for test case management.
| name | next-cache-components |
| description | Next.js 16 Cache Components - PPR, use cache directive, cacheLife, cacheTag, updateTag |
Cache Components enable Partial Prerendering (PPR) - mix static, cached, and dynamic content in a single route.
// next.config.ts
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
cacheComponents: true,
};
export default nextConfig;
This replaces the old experimental.ppr flag.
With Cache Components enabled, content falls into three categories:
Synchronous code, imports, pure computations - prerendered at build time:
export default function Page() {
return (
<header>
<h1>Our Blog</h1> {/* Static - instant */}
<nav>...</nav>
</header>
);
}
use cache)Async data that doesn't need fresh fetches every request:
async function BlogPosts() {
'use cache';
cacheLife('hours');
const posts = await db.posts.findMany();
return <PostList posts={posts} />;
}
Runtime data that must be fresh - wrap in Suspense:
import { Suspense } from 'react';
export default function Page() {
return (
<>
<BlogPosts /> {/* Cached */}
<Suspense fallback={<p>Loading...</p>}>
<UserPreferences /> {/* Dynamic - streams in */}
</Suspense>
</>
);
}
async function UserPreferences() {
const theme = (await cookies()).get('theme')?.value;
return <p>Theme: {theme}</p>;
}
use cache Directive'use cache';
export default async function Page() {
// Entire page is cached
const data = await fetchData();
return <div>{data}</div>;
}
export async function CachedComponent() {
'use cache';
const data = await fetchData();
return <div>{data}</div>;
}
export async function getData() {
'use cache';
return db.query('SELECT * FROM posts');
}
'use cache'; // Default: 5m stale, 15m revalidate
'use cache: remote'; // Platform-provided cache (Redis, KV)
'use cache: private'; // For compliance, allows runtime APIs
cacheLife() - Custom Lifetimeimport { cacheLife } from 'next/cache';
async function getData() {
'use cache';
cacheLife('hours'); // Built-in profile
return fetch('/api/data');
}
Built-in profiles: 'default', 'minutes', 'hours', 'days', 'weeks', 'max'
async function getData() {
'use cache';
cacheLife({
stale: 3600, // 1 hour - serve stale while revalidating
revalidate: 7200, // 2 hours - background revalidation interval
expire: 86400, // 1 day - hard expiration
});
return fetch('/api/data');
}
cacheTag() - Tag Cached Contentimport { cacheTag } from 'next/cache';
async function getProducts() {
'use cache';
cacheTag('products');
return db.products.findMany();
}
async function getProduct(id: string) {
'use cache';
cacheTag('products', `product-${id}`);
return db.products.findUnique({ where: { id } });
}
updateTag() - Immediate InvalidationUse when you need the cache refreshed within the same request:
'use server';
import { updateTag } from 'next/cache';
export async function updateProduct(id: string, data: FormData) {
await db.products.update({ where: { id }, data });
updateTag(`product-${id}`); // Immediate - same request sees fresh data
}
revalidateTag() - Background RevalidationUse for stale-while-revalidate behavior:
'use server';
import { revalidateTag } from 'next/cache';
export async function createPost(data: FormData) {
await db.posts.create({ data });
revalidateTag('posts'); // Background - next request sees fresh data
}
Cannot access cookies(), headers(), or searchParams inside use cache.
// Wrong - runtime API inside use cache
async function CachedProfile() {
'use cache';
const session = (await cookies()).get('session')?.value; // Error!
return <div>{session}</div>;
}
// Correct - extract outside, pass as argument
async function ProfilePage() {
const session = (await cookies()).get('session')?.value;
return <CachedProfile sessionId={session} />;
}
async function CachedProfile({ sessionId }: { sessionId: string }) {
'use cache';
// sessionId becomes part of cache key automatically
const data = await fetchUserData(sessionId);
return <div>{data.name}</div>;
}
use cache: privateFor compliance requirements when you can't refactor:
async function getData() {
'use cache: private';
const session = (await cookies()).get('session')?.value; // Allowed
return fetchData(session);
}
Cache keys are automatic based on:
async function Component({ userId }: { userId: string }) {
const getData = async (filter: string) => {
'use cache';
// Cache key = userId (closure) + filter (argument)
return fetch(`/api/users/${userId}?filter=${filter}`);
};
return getData('active');
}
import { Suspense } from 'react';
import { cookies } from 'next/headers';
import { cacheLife, cacheTag } from 'next/cache';
export default function DashboardPage() {
return (
<>
{/* Static shell - instant from CDN */}
<header>
<h1>Dashboard</h1>
</header>
<nav>...</nav>
{/* Cached - fast, revalidates hourly */}
<Stats />
{/* Dynamic - streams in with fresh data */}
<Suspense fallback={<NotificationsSkeleton />}>
<Notifications />
</Suspense>
</>
);
}
async function Stats() {
'use cache';
cacheLife('hours');
cacheTag('dashboard-stats');
const stats = await db.stats.aggregate();
return <StatsDisplay stats={stats} />;
}
async function Notifications() {
const userId = (await cookies()).get('userId')?.value;
const notifications = await db.notifications.findMany({
where: { userId, read: false },
});
return <NotificationList items={notifications} />;
}
| Old Config | Replacement |
|---|---|
experimental.ppr | cacheComponents: true |
dynamic = 'force-dynamic' | Remove (default behavior) |
dynamic = 'force-static' | 'use cache' + cacheLife('max') |
revalidate = N | cacheLife({ revalidate: N }) |
unstable_cache() | 'use cache' directive |
unstable_cache to use cacheunstable_cache has been replaced by the use cache directive in Next.js 16. When cacheComponents is enabled, convert unstable_cache calls to use cache functions:
Before (unstable_cache):
import { unstable_cache } from 'next/cache';
const getCachedUser = unstable_cache(async id => getUser(id), ['my-app-user'], {
tags: ['users'],
revalidate: 60,
});
export default async function Page({ params }: { params: Promise<{ id: string }> }) {
const { id } = await params;
const user = await getCachedUser(id);
return <div>{user.name}</div>;
}
After (use cache):
import { cacheLife, cacheTag } from 'next/cache';
async function getCachedUser(id: string) {
'use cache';
cacheTag('users');
cacheLife({ revalidate: 60 });
return getUser(id);
}
export default async function Page({ params }: { params: Promise<{ id: string }> }) {
const { id } = await params;
const user = await getCachedUser(id);
return <div>{user.name}</div>;
}
Key differences:
use cache generates keys automatically from function arguments and closures. The keyParts array from unstable_cache is no longer needed.options.tags with cacheTag() calls inside the function.options.revalidate with cacheLife({ revalidate: N }) or a built-in profile like cacheLife('minutes').unstable_cache did not support cookies() or headers() inside the callback. The same restriction applies to use cache, but you can use 'use cache: private' if needed.Math.random(), Date.now()) execute once at build time inside use cacheFor request-time randomness outside cache:
import { connection } from 'next/server';
async function DynamicContent() {
await connection(); // Defer to request time
const id = crypto.randomUUID(); // Different per request
return <div>{id}</div>;
}
Sources: