lru-cache
There are 524 repositories under lru-cache topic.
isaacs/node-lru-cache
A fast cache that automatically deletes the least recently used items
aio-libs/async-lru
Simple LRU cache for asyncio
EchoVault/SugarDB
Embeddable and distributed in-memory alternative to Redis.
rookLab/react-component-caching
Speedier server-side rendering with component caching in React 16
lamerman/cpp-lru-cache
Simple and reliable LRU cache for c++ based on hashmap and linkedlist
vpetrigo/caches
C++ cache with LRU/LFU/FIFO policies implementation
patrixr/strapi-middleware-cache
:electric_plug: A cache middleware for https://strapi.io
mailgun/holster
A place to keep useful golang functions and small libraries
kittinunf/Fuse
The simple generic LRU memory/disk cache for Android written in Kotlin
goldsborough/lru-cache
:dizzy: A feature complete LRU cache implementation in C++
orca-zhang/ecache
🦄【轻量级本地内存缓存】🤏代码少于300行⌚️30s接入🚀高性能、极简设计、并发安全🌈支持LRU 和 LRU-2模式 🦖支持分布式一致性 [ecache] Extremely easy, ultra fast, concurrency-safe and support distributed consistency. Similar to bigcache, cachego, freecache, gcache, gocache, groupcache, lrucache.
lonelyenvoy/python-memoization
A powerful caching library for Python, with TTL support and multiple algorithm options.
nisarg0/Algorithm-Implementation
This is our effort to collect the best implementations to tough algorithms. All codes are written in c++.
nitaiaharoni1/vector-storage
Vector Storage is a vector database that enables semantic similarity searches on text documents in the browser's local storage. It uses OpenAI embeddings to convert documents into vectors and allows searching for similar documents based on cosine similarity.
greg7mdp/gtl
Greg's Template Library of useful classes.
lukeed/tmp-cache
A least-recently-used cache in 35 lines of code~!
iwanbk/bcache
Eventually consistent distributed in-memory cache Go library
saurabh0719/elara
Elara DB is an easy to use, lightweight persistent key-value store that can also be used as a fast in-memory cache. Manipulate data structures in-memory, encrypt database files and export data. :dart:
dboslee/lru
LRU cache using go generics
arbazsiddiqui/lru-cache-node
A lighting fast cache manager for node with least-recently-used policy.
al8n/caches-rs
This is a Rust implementation for popular caches (support no_std).
iamsinghrajat/async-cache
A caching solution for asyncio
go-pkgz/expirable-cache
Expirable Go LRC\LRU cache without goroutines
youknowone/methodtools
Expand functools features(lru_cache) to class - methods, classmethods, staticmethods and even for (unofficial) hybrid methods.
yysskk/MemoryCache
LRU, type-safe, thread-safe memory cache class in Swift
johnsiilver/golib
Open version of common golang libraries useful to many projects.
saurabh0719/go-hashlru
A simple thread-safe and fixed size LRU. Based on the Hashlru Algorithm :arrows_clockwise:
tugrul512bit/LruClockCache
A low-latency LRU approximation cache in C++ using CLOCK second-chance algorithm. Multi level cache too. Up to 2.5 billion lookups per second.
vmihailenco/go-cache-benchmark
Cache benchmark for Golang
sysulq/golang-lru
Golang LRU cache with expire feature.
karlseguin/cache.zig
A thread-safe, expiration-aware, LRU cache for Zig
dasebe/webcachesim
A C++11 simulator for a variety of CDN caching policies.
hyerania/Belady-Cache-Replacement
Using Belady's algorithm for improved cache replacement
feross/async-lru
A simple async LRU cache supporting O(1) set, get and eviction of old keys
leohowell/redis-lru
LRU cache for Python. Use Redis as backend. Provides a dictionary-like object as well as a method decorator. pip install redis-lru
dasebe/optimalwebcaching
Derive the optimal cache hit ratio for Internet request traces with variable object sizes.