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.
{cache: no-cache}
1 parent 4e7f215 commit 6235dc5Copy full SHA for 6235dc5
src/content/docs/workers/examples/cache-using-fetch.mdx
@@ -469,8 +469,10 @@ async function handleRequest(request) {
469
470
## Using the HTTP Cache API
471
472
-The `cache` mode can be set in `fetch` options.
473
-Currently Workers only support the `no-store` mode for controlling the cache.
+The [`cache`](https://developer.mozilla.org/en-US/docs/Web/API/RequestInit#cache) mode can be set in `fetch` options.
+
474
+Currently Workers only support the `no-store` and `no-cache` modes for controlling the cache.
475
476
When `no-store` is supplied the cache is bypassed on the way to the origin and the request is not cacheable.
477
478
```js
0 commit comments