Skip to content

Commit

Permalink
Update src/content/reference/react/cache.md
Browse files Browse the repository at this point in the history
Co-authored-by: Soichiro Miki <smiki-tky@umin.ac.jp>
  • Loading branch information
locol23 and smikitky authored Oct 11, 2023
1 parent 2784501 commit de1db82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/reference/react/cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ async function MinimalWeatherCard({city}) {

`AnimatedWeatherCard``MinimalWeatherCard` の両方が同じ <CodeStep step={1}>city</CodeStep> でレンダーする場合、<CodeStep step={2}>メモ化された関数</CodeStep> から同じデータのスナップショットを受け取ります。

`AnimatedWeatherCard``MinimalWeatherCard` が異なる <CodeStep step={1}>city</CodeStep> 引数を <CodeStep step={2}>`getTemperature`</CodeStep> に渡した場合、`fetchTemperature` は2回呼び出され、呼び出したそれぞれで異なるデータを受け取ります
`AnimatedWeatherCard``MinimalWeatherCard` が異なる <CodeStep step={1}>city</CodeStep> 引数を <CodeStep step={2}>`getTemperature`</CodeStep> に渡した場合、`fetchTemperature` は 2 回呼び出され、それぞれの呼び出しが異なるデータを受け取ります

<CodeStep step={1}>city</CodeStep> はキャッシュキーとして機能します。

Expand Down

0 comments on commit de1db82

Please sign in to comment.