UNPKG

runtime-memory-cache

Version:

A lightweight, high-performance in-memory cache for Node.js with TTL support, configurable eviction policies (FIFO/LRU), statistics tracking, and zero dependencies.

5 lines (4 loc) 235 B
export { default, RuntimeMemoryCache } from './index'; export type { CacheOptions, CacheStats, CacheEntry, EvictionPolicy } from './types'; export { CacheUtils, ValidationUtils } from './utils'; export { StatsTracker } from './stats';