Cache Middleware
The Cache middleware uses the Web Standard's Cache API. It caches a given response according to the Cache-Control
headers.
The Cache middleware currently supports Cloudflare Workers projects using custom domains and Deno projects using Deno 1.26+.
Please be aware that the Cache API is not currently supported by Deno Deploy. The caches
variable, which is part of the Cache API, may not be available in the Deno Deploy environment.
See Usage below for instructions on each platform.
Import
ts
import { Hono } from 'hono'
import { cache } from 'hono/cache'
Usage
ts
app.get(
'*',
cache({
cacheName: 'my-app',
cacheControl: 'max-age=3600',
})
)
ts
// Must use `wait: true` for the Deno runtime
app.get(
'*',
cache({
cacheName: 'my-app',
cacheControl: 'max-age=3600',
wait: true,
})
)
Options
cacheName
: string |(c: Context) => string | Promise<string>
- required- The name of the cache. Can be used to store multiple caches with different identifiers.
wait
: boolean- A boolean indicating if Hono should wait for the Promise of the
cache.put
function to resolve before continuing with the request. Required to be true for the Deno environment. Default isfalse
.
- A boolean indicating if Hono should wait for the Promise of the
cacheControl
: string- A string of directives for the
Cache-Control
header. See the MDN docs for more information. When this option is not provided, noCache-Control
header is added to requests.
- A string of directives for the
vary
: string | string[]- Sets the
Vary
header in the response. If the original response header already contains aVary
header, the values are merged, removing any duplicates. Setting this to*
will result in an error. For more details on the Vary header and its implications for caching strategies, refer to the MDN docs.
- Sets the
keyGenerator
:(c: Context) => string | Promise<string>
-- Generates keys for every request in the
cacheName
store. This can be used to cache data based on request parameters or context parameters. Default isc.req.url
.
- Generates keys for every request in the