47 skills found · Page 1 of 2
Tencent / DCacheA distributed in-memory NOSQL system based on TARS framework, support LRU algorithm and data persists on back-end database. Users can easily deploy, publish, and scale services on the web interface.
cacheMon / NSDI24 SIEVEThe repo for NSDI24 paper: SIEVE is Simpler than LRU: an Efficient Turn-Key Eviction Algorithm for Web Caches
tugrul512bit / LruClockCacheA low-latency LRU approximation cache in C++ using CLOCK second-chance algorithm. Multi level cache too. Up to 2.5 billion lookups per second.
saurabh0719 / Go HashlruA simple thread-safe and fixed size LRU. Based on the Hashlru Algorithm :arrows_clockwise:
kavicastelo / Advanced Cache DesignA collection of advanced cache design algorithms including LRU, LFU, ARC, TinyLFU, Count-Min Sketch, and Segmented LRU, implemented in TypeScript.
dchest / LruGo package lru implements Least Recently Used cache algorithm.
cloudxaas / GocacheOne of The Fastest Zero Alloc LRU Cache for Golang (Go). Maximizes memory use, no garbage collection issues. Use memory size limit instead of specifying item capacity. Batch eviction feature for faster processing
kurtextrem / Js SieveSIEVE in JS, a modern efficient cache algorithm that is simpler than LRU
cleverdeng / LruCache.pyImplements LRU(Last-recently-used) cache algorithm, Support the thread safe, With Python
medikoo / Lru QueueSize limited queue based on LRU algorithm
flextra19 / PageReplacement Algorithm CompareImplementing FIFO, OPT, LRU, ClockPRA algorithms in C++
zekedroid / React LruLeast recently used (LRU) cache algorithm rendering of React roots
int-main / Page Replacement Algorithms In PythonThese are the Python implementations of FIFO, LRU and OPT page replacement algorithms
DimaBond174 / Cache Multi ThreadComparative testing of concurrent multithreaded cache algorithms (LRU, MRU, MQ, ..)
dchest / CacheGo package cache implements LRU (Least Recently Used) cache algorithm. [[ Deprecated, use https://github.com/dchest/lru ]]
tickbh / Algorithm Rsabout algorithm data structure, now has lru/lru-k/lfu/slab/rbtree/timerwheel with ttl, 关于算法常用的数据结构
Sitaras / Os Memory SimulatorMemory management simulator, using Hashed Page Table. Page Replacement Algorithms: Least Recently Used (LRU) and Second Chance.
bisphone / HACacheA simple in-memory cache for Cocoa framework with LRU/MRU algorithm in eviction state.
shrynshjn / PageReplacementFIFO, LRU and Optimal page replacement algorithms are implemented
xwzy / GodanSkip List, Bloom Filter, Ring Buffer, Query Counter, LRU, LFU... 🚀🚀🚀 Data structures and algorithm implementation in golang.