UNPKG

transitory

Version:

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

10 lines (9 loc) 193 B
/** * The reason something was removed from a cache. */ export declare enum RemovalReason { EXPLICIT = "explicit", REPLACED = "replaced", SIZE = "size", EXPIRED = "expired" }