High performance, thread-safe in-memory caching primitives for .NET
-
Updated
Dec 4, 2024 - C#
High performance, thread-safe in-memory caching primitives for .NET
Trace-driven cache memory simulator with LRU, MRU, RR and Belady replacement policies.
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.
HybridCacheLibrary - A high-performance, thread-safe caching library in C#, combining the strengths of both LRU and LFU cache eviction strategies. Perfect for managing dynamically sized caches with customizable frequency settings.
A C# reference implementation of a Least Recently Used (LRU) cache for educational purposes.
Add a description, image, and links to the lru topic page so that developers can more easily learn about it.
To associate your repository with the lru topic, visit your repo's landing page and select "manage topics."