You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/1.guide/6.cache.md
+32-1
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,38 @@ The stars will be cached in development inside **.nitro/cache/functions/ghStars/
69
69
You can also use the `cachedFunction` method as alias of `defineCachedFunction`.
70
70
::
71
71
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.
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
+
72
104
## Caching route rules
73
105
74
106
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.
0 commit comments