Skip to content

Commit 1e31b7b

Browse files
authored
Add KV call out
1 parent 58c1069 commit 1e31b7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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 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.
121+
Cache API within Workers does not support tiered caching or use with Cache Reserve. Consider using [Workers KV](/kv/) instead. 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)