UNPKG

transitory

Version:

In-memory cache with high hit rates via LFU eviction. Supports time-based expiration, automatic loading and metrics.

11 lines 234 B
import { CacheBuilderImpl } from './CacheBuilder'; /** * Create a new cache via a builder. * * @returns * builder of a cache */ export function newCache() { return new CacheBuilderImpl(); } //# sourceMappingURL=index.js.map