Skip to content

Commit dc83a2e

Browse files
committedMar 21, 2024·
docs(cache): add a note for serverless environment
1 parent d12aae1 commit dc83a2e

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed
 

‎docs/1.guide/6.cache.md

+32-1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,38 @@ The stars will be cached in development inside **.nitro/cache/functions/ghStars/
6969
You can also use the `cachedFunction` method as alias of `defineCachedFunction`.
7070
::
7171

72+
### Serverless environment
73+
74+
In a serverless environment, the instance is destroyed after each request. Nitro uses `event.waitUntil` to keep the instance alive while the cache is being updated while the response is sent to the client.
75+
76+
To make sure your cached functions are working as expected in a serverless environment, you should always give the `event` as first argument to the function.
77+
78+
::code-group
79+
```ts [utils/github.ts]
80+
import type { H3Event } from 'h3'
81+
82+
export const cachedGHStars = defineCachedFunction(async (event: H3Event, repo: string) => {
83+
const data: any = await $fetch(`https://api.github.com/repos/${repo}`)
84+
85+
return data.stargazers_count
86+
}, {
87+
maxAge: 60 * 60,
88+
name: 'ghStars',
89+
getKey: (event: H3Event, repo: string) => repo
90+
})
91+
```
92+
```ts [api/stars/[...repo\\].ts]
93+
export default defineEventHandler(async (event) => {
94+
const repo = event.context.params.repo
95+
const stars = await cachedGHStars(event, repo).catch(() => 0)
96+
97+
return { repo, stars }
98+
})
99+
```
100+
::
101+
102+
This way, the function will be able to keep the instance alive while the cache is being updated without slowing down the response to the client.
103+
72104
## Caching route rules
73105

74106
This feature enables you to add caching routes based on a glob pattern directly in the main configuration file. This is especially useful to have a global cache strategy for a part of your application.
@@ -191,7 +223,6 @@ export default defineNuxtConfig({
191223

192224
The `cachedEventHandler` and `cachedFunction` functions accept the following options:
193225

194-
195226
::field-group
196227
::field{name="base" type="string"}
197228
Name of the storage mountpoint to use for caching, default is `'cache'`.

0 commit comments

Comments
 (0)
Please sign in to comment.