import * as velo from "https://deno.land/x/velo@1.0.0/mod.ts";
Classes
c Arc | Implementation of an Adaptive Replacement Cache (ARC) [1]. It adapitvely balances between recency and frequency. This is achieved by keeping track of evicted keys and their frequencies in ghost lists (b1 and b2). This increases the overall size of the cache, but allows for a better hit rate. |
c Lfu | Least Frequently Used (LFU) |
c Lru | Least Recently Used (LRU) |
Second Chance (SC) | |
c Velo | Builder class for Cache and LoadingCache. Allows to add optional functionality to a cache. The following options are available: |
Window-TinyLFU (W-TinyLFU) implementation as per https://dl.acm.org/citation.cfm?id=3149371 inspired by Caffeine's implementation: https://github.com/ben-manes/caffeine. |
Enums
The reason why a cache entry was removed. |