import { LRUSet } from "https://deno.land/x/cache_mapset@1.0.0/mod.ts";
Set
with an upper limit, objects like. When the upper limit is reached, replaces the value with LRU algorithm.
Examples
Example 1
Example 1
import { LRUSet } from "https://deno.land/x/cache_mapset@$VERSION/lru.ts";
declare const maxNumOfValues: number;
const set = new LRUSet(maxNumOfValues);
Constructors
new
LRUSet(maxNumOfValues: number, values?: Readonly<Iterable<T>>)