Skip to content

Commit

Permalink
[no-issue] fix: 예시 코드 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
SEOKKAMONI committed Sep 29, 2024
1 parent 714244d commit e62e5e3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pages/docs/app/api-reference/functions/unstable_cache.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ const data = unstable_cache(fetchData, keyParts, options)()
import { unstable_cache } from 'next/cache';

export default async function Page({ params }: { params: { userID: string } }) {
const getCachedUser = unstable_cache(
async () => {

return { id: params.userID };
const getCachedUser = unstable_cache(
async () => {
return { id: params.userId }
},
[params.userID], // 여기서 userID를 keyParts에 추가하여 Next.js가 서로 다른 userID에 대해 별도의 캐시를 만들 수 있도록 합니다.
{
tags: ["cached-user-tag"],
revalidate: 60,
}
);
);

...
}
```
Expand All @@ -70,17 +70,17 @@ export default async function Page({ params }: { params: { userID: string } }) {
import { unstable_cache } from 'next/cache';

export default async function Page({ params }) {
const getCachedUser = unstable_cache(
async () => {

return { id: params.userID };
const getCachedUser = unstable_cache(
async () => {
return { id: params.userId }
},
[params.userID], // 여기서 userID를 keyParts에 추가하여 Next.js가 서로 다른 userID에 대해 별도의 캐시를 만들 수 있도록 합니다.
{
tags: ["cached-user-tag"],
revalidate: 60,
}
);
);

...
}
```
Expand Down

0 comments on commit e62e5e3

Please sign in to comment.