lrucache
There are 73 repositories under lrucache topic.
isaacs/node-lru-cache
A fast cache that automatically deletes the least recently used items
jaemk/cached
Rust cache structures and easy function memoization
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.
entertoo/PhotosWall
快速加载网络图片的图片墙,结合DiskLruCache、LruCache技术达到三级缓存目的,对DiskLruCache进行封装,使用更方便。另外采用网页爬虫对百度图片进行抓取。
hornhuang/android-SignInSystem
⚡️ 致力于打造一款极致签到系统,技术和美是可以并存的哦!同时期待你的 star 🥳~
Wan7451/DaMaiProject
大麦界面,实现多种方式网络访问、数据缓存
marstr/collection
Generic Golang implementation of a few basic data structures.
bxcodec/gotcha
gotcha: inmemory-cache in Go (Golang) with customizable algorithm
orca-zhang/lrucache
🦄 LRU cache for Go @bilibili. (beats 100% submissions @ leetcode)
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
ez8-co/linked_hash
🦄 链式哈希 [LRU] Fast, header-only, cross-platform and STL-like linked_hash_map & linked_hash_set for C++. (beats 100% submissions @ leetcode) LRUCache
liltoto/LRU
Simple and powerful LRU cache for Deno
alxkm/cache
Simple cache implementation on java
tickbh/algorithm-rs
about algorithm data structure, now has lru/lru-k/lfu/slab/rbtree/timerwheel with ttl, 关于算法常用的数据结构
kernel0x/falcon
📦 Thread-safe, crypto-protected, multi-level lru caching with a life cycle
wellwelwel/lru.min
🔥 An extremely fast and efficient LRU cache for JavaScript with high compatibility (including Browsers).
satmaelstorm/allcache
Generic go cache
Ufkoku/SizeBasedEnhancedLruCache
LruCache that uses object size in heap, as sizeOf value.
zyyoona7/Cache
对 LruCache 和 DiskLruCache 的封装,支持过期时间、加/解密。Wrapper for LruCache and DiskLruCache, support for expiration time, encryption/decryption
LRodniansky/LRU8
LRU8 is an extremely fast "least recently used" (LRU) cache designed for 64-bit machines. This lightweight implementation is tailored for efficiency and speed, managing up to 8 elements in memory.
motorro/RxLceModel
An Android library for data load with cache and loading state
PhoenixGuo/CacheImage
一个基于LRU的图片三级缓存库
berkaybarlas/Operating-Systems
Koc University - KU Comp 304 - Operating Systems Course Projects
mhsn001/LRUCache
LRU Cache implementation using HashMap and Double linked list in java.
nicolascaorsi/LRUCache
A simple LRU cache implementation
orca-zhang/cache.js
🦄 LRU cache for javascript. (beats 100% submissions @ leetcode)
SUMUKHA-PK/LRU-Cache
Implementation of the LRU Cache in C, Implementation of the LRU Cache in C++, Implementation of the LRU Cache in Go, Implementation of the LRU Cache in JAVA
nuczzz/fcache
File cache with LRU algorithm, contains memory cache and disk cache.
ricardotondello/LRU
This is a thread safe caching strategy implementation of Least Recently Used (LRU). It defines the policy to evict elements from the cache to make room for new elements when the cache is full, meaning it discards the least recently used items first.
Traumatism/cacher
Lightweight LRU cache decorators
truexf/goutil
Here is a box of chocolates, here is the magic room, come in and have a look for a surprise!
xfhy/PhotoWall
LruCache和DiskLruCache的完美结合: 照片墙
xiaonanln/mflru
lru cache with memory footprint limit
freddiehaddad/lrucache
Least recently used (LRU) in-memory cache.
rabuchaim/cachettl
An elegant LRU TTL Cache decorator that also works with asyncio. It has the cache_info(), cache_clear() methods and access to the remainingttl property.
Zekfad/lru_cache
LRU (Least recently used) cache with additional weak map layer.