We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b71774c commit a226a91Copy full SHA for a226a91
ja/caching.md
@@ -11,11 +11,11 @@ Vue の SSR は非常に高速ですが、コンポーネントインスタン
11
```js
12
const microCache = LRU({
13
max: 100,
14
- maxAge: 1000 // Important: entries expires after 1 second.
+ maxAge: 1000 // 重要: コンテンツの登録内容は1秒後に期限切れになります。
15
})
16
const isCacheable = req => {
17
- // implement logic to check if the request is user-specific.
18
- // only non-user-specific pages are cache-able
+ // リクエストがユーザー固有のものかどうかチェックするロジックを実装します。
+ // ユーザー固有でないページのみがキャッシュ可能です。
19
}
20
server.get('*', (req, res) => {
21
const cacheable = isCacheable(req)
0 commit comments