Skip to content

Commit 58c1069

Browse files
authored
[Workers]
Explicitly state that Cache Reserve is not supported.
1 parent 221fa13 commit 58c1069

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/docs/workers/reference/how-the-cache-works.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ Conceptually, there are two ways to interact with Cloudflare’s Cache using a W
2626

2727
* Caching responses generated by the Worker itself through `cache.put()`.
2828

29-
:::caution[Tiered caching]
29+
:::caution[Tiered caching & Cache Reserve]
3030

3131

32-
The Cache API is not compatible with tiered caching. To take advantage of tiered caching, use the [fetch API](/workers/runtime-apis/fetch/).
32+
The Cache API is not compatible with tiered caching and Cache Reserve. To take advantage of tiered caching, use the [fetch API](/workers/runtime-apis/fetch/).
3333

3434

3535
:::
@@ -118,7 +118,7 @@ This [template](/workers/examples/cache-api/) shows ways to use the cache API. F
118118

119119
:::caution[Tiered caching and the Cache API]
120120

121-
Cache API within Workers does not support tiered caching. Tiered Cache concentrates connections to origin servers so they come from a small number of data centers rather than the full set of network locations. Cache API is local to a data center, this means that `cache.match` does a lookup, `cache.put` stores a response, and `cache.delete` removes a stored response only in the cache of the data center that the Worker handling the request is in. Because these methods apply only to local cache, they will not work with tiered cache.
121+
Cache API within Workers does not support tiered caching or use with Cache Reserve. Tiered Cache concentrates connections to origin servers so they come from a small number of data centers rather than the full set of network locations. Cache API is local to a data center, this means that `cache.match` does a lookup, `cache.put` stores a response, and `cache.delete` removes a stored response only in the cache of the data center that the Worker handling the request is in. Because these methods apply only to local cache, they will not work with tiered cache.
122122
:::
123123

124124
## Related resources

0 commit comments

Comments
 (0)