UNPKG

transitory

Version:

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

16 lines (11 loc) 402 B
export { KeyType } from './KeyType'; export { AbstractCache } from './AbstractCache'; export { Cache } from './Cache'; export { Weigher } from './Weigher'; export { RemovalReason } from './RemovalReason'; export { RemovalListener } from './RemovalListener'; export * from './metrics'; export * from './loading'; export * from './bounded'; export * from './boundless'; export * from './expiration';