transitory
Version:
In-memory cache with high hit rates via LFU eviction. Supports time-based expiration, automatic loading and metrics.
12 lines (11 loc) • 398 B
TypeScript
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';