UNPKG

transitory

Version:

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

7 lines 233 B
/** * Abstract class for all cache implementations. This exists so that its * possible to use instanceof with caches like: `obj instanceof AbstractCache`. */ export class AbstractCache { } //# sourceMappingURL=AbstractCache.js.map