/users response cached in one region will not exist in another until a request for that resource is made from there.
An origin can have multiple, named Cache objects, and it is up to your script to decide how cache updates happen. Items in a Cache respect the Cache-Control request header, which is how you control the life cycle of your caches. Entries are purged automatically a short time after they expire. Version your caches by name, and only use a cache from a version of the script that can safely operate on it.
Cache instances are shared across all domains associated with your PullZone, but they must be accessed via the currently requesting host name. Use the current Request object as the key, or build the key from the current request URL, for example const key = new URL(req.url).origin + "/img/example.png";. Either way your caches will work reliably across every domain on the PullZone.
Note: There is a hard limit of
100MB per cache file.Limitations
API surface limits:CacheStorage(the globalcachesobject)- Supported:
caches.default,caches.open(name) - Not supported:
caches.has,caches.delete,caches.keys,caches.match
- Supported:
Cache(an instance returned bycaches.defaultorcaches.open)- Supported:
match,put,delete - Not supported:
matchAll,add,addAll,keys
- Supported:
cache:v1, cache:v2) so that a cache is completely purged when updating scripts.
Quickstart
A minimal cache-aside pattern: look up by URL, generate on miss, write back in the background.References
- MSDN CacheStorage - Mozilla’s CacheStorage interface documentation
- MSDN Cache API - Mozilla’s Cache interface documentation