Skip to content

Commit a226a91

Browse files
re-fortkazupon
authored andcommitted
Japanese Translation: ja/caching.md (#37)
* Translate caching.md via GitLocalize * Translate caching.md via GitLocalize
1 parent b71774c commit a226a91

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: ja/caching.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ Vue の SSR は非常に高速ですが、コンポーネントインスタン
1111
```js
1212
const microCache = LRU({
1313
max: 100,
14-
maxAge: 1000 // Important: entries expires after 1 second.
14+
maxAge: 1000 // 重要: コンテンツの登録内容は1秒後に期限切れになります。
1515
})
1616
const isCacheable = req => {
17-
// implement logic to check if the request is user-specific.
18-
// only non-user-specific pages are cache-able
17+
// リクエストがユーザー固有のものかどうかチェックするロジックを実装します。
18+
// ユーザー固有でないページのみがキャッシュ可能です。
1919
}
2020
server.get('*', (req, res) => {
2121
const cacheable = isCacheable(req)

0 commit comments

Comments
 (0)