lru-implementation
There are 11 repositories under lru-implementation topic.
cloudxaas/gocache
One 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
ahtrahdis7/node-lru-cache-js
An implementation of LRU Cache using Doubly Linked Lists and Maps with O(1) read and write time complexity. [500+ NPM Downloads]
alxkm/cache
Simple cache implementation on java
freddiehaddad/lrucache
Least recently used (LRU) in-memory cache.
ac-alpha/LRU-Implementations
Different implementations of LRU Page Replacement algorithm and their results
piotr-lipiarz/go-lru
In memory Go implementation of LRU Cache
pnguyen215/cachify
cachify is a lightweight, high-performance, thread-safe Least Recently Used (LRU) cache library for Go. It is designed for in-memory caching with optional support for expiration, eviction callbacks, and dynamic capacity adjustment.
souravkantha/lru-cache
A LRU cache implemented using object oriented approach
mtumilowicz/java12-fundamentals-cache-implementations-workshop
Simple implementations of LRU / LFU cache.