--- title: "@std/cache" description: "Cache utilities" jsr: jsr:@std/cache pkg: cache version: 0.2.2 generated: true stability: unstable --- :::info Unstable This @std package is experimental and its API may change without a major version bump. ::: ## Overview
In-memory cache utilities, such as memoization and caches with different expiration policies.
```js import { memoize, LruCache, type MemoizationCacheResult } from "@std/cache"; import { assertEquals } from "@std/assert"; const cache = new LruCache