This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
title: 99. 最後に | ||
description: 99. 最後に | ||
sidebar: | ||
badge: | ||
text: TODO | ||
variant: caution | ||
--- | ||
// TODO: このページはまだ作成中です。 | ||
|
||
## cacheの話はしていません。なぜなら変わりそうだから。 | ||
|
||
[Breaking] Disable automatic fetch caching | ||
- fetch cache と言ってるので request memoization 周りの話だと思っている。 | ||
コンポーネントでがむしゃらにとってもいい感じに最適化されるぜ!という話がなくなることになる?かも? | ||
https://github.com/vercel/next.js/pull/66004 | ||
- [Breaking] disable client router cache for page segments | ||
client側で持っているページのキャッシュがなくなるので、revalidate()してたところがなくせてシンプルになる場所があるかも。 | ||
https://github.com/vercel/next.js/pull/66039 | ||
- [Breaking] Disable automatic static generation for route handlers | ||
ServeAction使っていることが多いので自分たちにはあまり影響ないかも | ||
https://github.com/vercel/next.js/pull/65825 | ||
- docs: Update Route Handlers docs for dynamic | ||
https://github.com/vercel/next.js/pull/66010/files | ||
|
||
## 'use client'? 'use server'? 'use memo'? | ||
'use ***'は境界です。 | ||
'use client'はCCの境界です。 | ||
'use server'はSAの境界です。RSCではない。 | ||
'use memo'はReact compilerの境界です。 | ||
|
||
## Reactのcanaryはフレームワークレディです。 | ||
|
||
## route handler について | ||
|
||
## template について | ||
|
||
# Metadata について |