UNPKG

quick-lru

Version:

Simple “Least Recently Used” (LRU) cache

179 lines (130 loc) 5.02 kB
export type Options<KeyType, ValueType> = { /** The maximum number of milliseconds an item should remain in the cache. @default Infinity By default, `maxAge` will be `Infinity`, which means that items will never expire. Lazy expiration occurs upon the next write or read call. Individual expiration of an item can be specified with the `set(key, value, {maxAge})` method. */ readonly maxAge?: number; /** The target maximum number of items before evicting the least recently used items. __Note:__ This package uses an [algorithm](https://github.com/sindresorhus/quick-lru#algorithm) which maintains between `maxSize` and `2 × maxSize` items for performance reasons. The cache may temporarily contain up to twice the specified size due to the dual-cache design that avoids expensive delete operations. */ readonly maxSize: number; /** Called right before an item is evicted from the cache due to LRU pressure, TTL expiration, or manual eviction via `evict()`. Useful for side effects or for items like object URLs that need explicit cleanup (`revokeObjectURL`). __Note:__ This callback is not called for manual removals via `delete()` or `clear()`. It fires for automatic evictions and manual evictions via `evict()`. */ onEviction?: (key: KeyType, value: ValueType) => void; }; // eslint-disable-next-line @typescript-eslint/naming-convention export default class QuickLRU<KeyType, ValueType> extends Map<KeyType, ValueType> implements Iterable<[KeyType, ValueType]> { /** Simple ["Least Recently Used" (LRU) cache](https://en.m.wikipedia.org/wiki/Cache_replacement_policies#Least_Recently_Used_.28LRU.29). The instance is an [`Iterable`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Iteration_protocols) of `[key, value]` pairs so you can use it directly in a [`for…of`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Statements/for...of) loop. @example ``` import QuickLRU from 'quick-lru'; const lru = new QuickLRU({maxSize: 1000}); lru.set('🦄', '🌈'); lru.has('🦄'); //=> true lru.get('🦄'); //=> '🌈' ``` */ constructor(options: Options<KeyType, ValueType>); [Symbol.iterator](): IterableIterator<[KeyType, ValueType]>; /** Set an item. Returns the instance. Individual expiration of an item can be specified with the `maxAge` option. If not specified, the global `maxAge` value will be used in case it is specified in the constructor; otherwise the item will never expire. @returns The cache instance. */ set(key: KeyType, value: ValueType, options?: {maxAge?: number}): this; /** Get an item. @returns The stored item or `undefined`. */ get(key: KeyType): ValueType | undefined; /** Check if an item exists. */ has(key: KeyType): boolean; /** Get an item without marking it as recently used. @returns The stored item or `undefined`. */ peek(key: KeyType): ValueType | undefined; /** Delete an item. @returns `true` if the item is removed or `false` if the item doesn't exist. */ delete(key: KeyType): boolean; /** Delete all items. */ clear(): void; /** Get the remaining time to live (in milliseconds) for the given item, or `undefined` when the item is not in the cache. - Does not mark the item as recently used. - Does not trigger lazy expiration or remove the entry when it is expired. - Returns `Infinity` if the item has no expiration. - May return a negative number if the item is already expired but not yet lazily removed. @returns Remaining time to live in milliseconds when set, `Infinity` when there is no expiration, or `undefined` when the item does not exist. */ expiresIn(key: KeyType): number | undefined; /** Update the `maxSize` in-place, discarding items as necessary. Insertion order is mostly preserved, though this is not a strong guarantee. Useful for on-the-fly tuning of cache sizes in live systems. */ resize(maxSize: number): void; /** The stored item count. */ get size(): number; /** The set max size. */ get maxSize(): number; /** The set max age. */ get maxAge(): number; /** Iterable for all the keys. */ keys(): IterableIterator<KeyType>; /** Iterable for all the values. */ values(): IterableIterator<ValueType>; /** Iterable for all entries, starting with the oldest (ascending in recency). */ entriesAscending(): IterableIterator<[KeyType, ValueType]>; /** Iterable for all entries, starting with the newest (descending in recency). */ entriesDescending(): IterableIterator<[KeyType, ValueType]>; /** Evict the least recently used items from the cache. @param count - The number of items to evict. Defaults to 1. It will always keep at least one item in the cache. @example ``` import QuickLRU from 'quick-lru'; const lru = new QuickLRU({maxSize: 10}); lru.set('a', 1); lru.set('b', 2); lru.set('c', 3); lru.evict(2); // Evicts 'a' and 'b' console.log(lru.has('a')); //=> false console.log(lru.has('c')); //=> true ``` */ evict(count?: number): void; }