Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
nonoakij committed May 23, 2024
1 parent b7be81d commit 733215d
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions docs/src/content/docs/guides/99-thanks.mdx
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 について

0 comments on commit 733215d

Please sign in to comment.