103 skills found · Page 1 of 4
JakeWharton / DiskLruCacheJava implementation of a Disk-based LRU cache which specifically targets Android compatibility.
jeromefroe / Lru RsAn implementation of a LRU cache
vpetrigo / CachesC++ cache with LRU/LFU/FIFO policies implementation
goldsborough / Lru Cache:dizzy: A feature complete LRU cache implementation in C++
servo / UluruA simple, fast, LRU cache implementation.
pbrady / FastcacheC implementation of Python 3 lru_cache
Kwynto / LruA simple and fast implementation of LRU for caching with old data preemption and constant access time.
lowlevel-studios / StoroAn Android library to cache any serializable objects to disk, using a LRU cache implementation, with the possibility to specify an expiry time for each entry and a maximum size that can be allocated.
hotchemi / LruCacheA tiny memory cache implementation which uses a LRU policy.
JuliaCollections / LRUCache.jlAn implementation of an LRU Cache in Julia
rogeriopvl / Php LrucacheLRU Cache implementation in PHP
a-agmon / LocalLRUA simple, fast, thread-safe and lock-free implementation of LRU (Least Recently Used) caching in Rust
zimingttkx / Cpp From Scratchc++20 from-scratch implementations: LRU/LFU/ARC cache, red-black tree, memory pool, GC and more. Header-only, zero deps.
marmeladema / Clru RsAn LRU cache implementation with constant time operations and weighted semantic.
nitnelave / Lru CacheA C++ implementation of a LRU cache
arindas / Generational LruA generational arena based LRU Cache implementation in 100% safe rust.
Kikobeats / HyperlruTiny & Fast LRU Implementation as possible.
kavicastelo / Advanced Cache DesignA collection of advanced cache design algorithms including LRU, LFU, ARC, TinyLFU, Count-Min Sketch, and Segmented LRU, implemented in TypeScript.
cocreature / LrucachingHaskell implementation of an LRU cache
ticki / PlruA concurrent implementation of pseudo-LRU cache tracking.