Skip to content

Cache

Defined in: .pnpm-home/store/v11/links/@cloudflare/workers-types/4.20251118.0/2891147a4db443bf13ca098dcb7381fb6bac5793758b7fd187ebaf5bc0deb969/node_modules/@cloudflare/workers-types/index.ts:1121

The Cache API allows fine grained control of reading and writing from the Cloudflare global network cache.

Cloudflare Docs Reference

new Cache(): Cache

Cache

delete(request, options?): Promise<boolean>

Defined in: .pnpm-home/store/v11/links/@cloudflare/workers-types/4.20251118.0/2891147a4db443bf13ca098dcb7381fb6bac5793758b7fd187ebaf5bc0deb969/node_modules/@cloudflare/workers-types/index.ts:1123

RequestInfo<unknown, CfProperties<unknown>> | URL

CacheQueryOptions

Promise<boolean>


match(request, options?): Promise<undefined | Response>

Defined in: .pnpm-home/store/v11/links/@cloudflare/workers-types/4.20251118.0/2891147a4db443bf13ca098dcb7381fb6bac5793758b7fd187ebaf5bc0deb969/node_modules/@cloudflare/workers-types/index.ts:1128

RequestInfo<unknown, CfProperties<unknown>> | URL

CacheQueryOptions

Promise<undefined | Response>


put(request, response): Promise<void>

Defined in: .pnpm-home/store/v11/links/@cloudflare/workers-types/4.20251118.0/2891147a4db443bf13ca098dcb7381fb6bac5793758b7fd187ebaf5bc0deb969/node_modules/@cloudflare/workers-types/index.ts:1133

RequestInfo<unknown, CfProperties<unknown>> | URL

Response

Promise<void>