![]() |
VOOZH | about |
dotnet add package Caching --version 5.0.0
NuGet\Install-Package Caching -Version 5.0.0
<PackageReference Include="Caching" Version="5.0.0" />
<PackageVersion Include="Caching" Version="5.0.0" />Directory.Packages.props
<PackageReference Include="Caching" />Project file
paket add Caching --version 5.0.0
#r "nuget: Caching, 5.0.0"
#:package Caching@5.0.0
#addin nuget:?package=Caching&version=5.0.0Install as a Cake Addin
#tool nuget:?package=Caching&version=5.0.0Install as a Cake Tool
<img src="https://github.com/jchristn/Caching/raw/master/assets/icon.png" height="128" width="128">
High-performance, thread-safe caching library for .NET with FIFO and LRU eviction policies, automatic expiration, persistence support, and comprehensive event notifications.
Caching is a lightweight, production-ready caching library that provides:
dotnet add package Caching
Or via Package Manager:
Install-Package Caching
using Caching;
// Create a FIFO cache with capacity of 1000, evicting 100 items when full
var cache = new FIFOCache<string, Person>(capacity: 1000, evictCount: 100);
// Add items
cache.AddReplace("user:123", new Person { Name = "Alice", Age = 30 });
// Get items
Person person = cache.Get("user:123");
// Try pattern (no exceptions)
if (cache.TryGet("user:123", out Person p))
{
Console.WriteLine($"Found: {p.Name}");
}
// Remove items
cache.Remove("user:123");
// Dispose when done
cache.Dispose();
// LRU evicts least recently accessed items
var cache = new LRUCache<string, byte[]>(capacity: 500, evictCount: 50);
cache.AddReplace("image:1", imageBytes);
cache.Get("image:1"); // Updates last-used timestamp
cache.Dispose();
// Expires at specific time
cache.AddReplace("session:xyz", sessionData, DateTime.UtcNow.AddMinutes(30));
// Or use TimeSpan for relative expiration
cache.AddReplace("temp:data", tempData, TimeSpan.FromSeconds(60));
// Enable sliding expiration (TTL refreshes on access)
cache.SlidingExpiration = true;
cache.AddReplace("sliding:key", value, TimeSpan.FromMinutes(5));
// Each time you access the item, expiration resets to 5 minutes from now
cache.Get("sliding:key"); // Refreshes expiration
// Atomically get existing or create new value
var person = cache.GetOrAdd("user:456", key =>
{
// This factory only runs if key doesn't exist
return database.GetPerson(456);
});
// With expiration
var data = cache.GetOrAdd("data:789",
key => LoadExpensiveData(key),
TimeSpan.FromHours(1));
// Add if new, update if exists
var result = cache.AddOrUpdate(
"counter:visits",
addValue: 1,
updateValueFactory: (key, oldValue) => oldValue + 1);
Console.WriteLine($"Visit count: {result}");
cache.Events.Added += (sender, e) => Console.WriteLine($"Added: {e.Key}");
cache.Events.Replaced += (sender, e) => Console.WriteLine($"Replaced: {e.Key}");
cache.Events.Removed += (sender, e) => Console.WriteLine($"Removed: {e.Key}");
cache.Events.Evicted += (sender, keys) => Console.WriteLine($"Evicted {keys.Count} items");
cache.Events.Expired += (sender, key) => Console.WriteLine($"Expired: {key}");
cache.Events.Cleared += (sender, e) => Console.WriteLine("Cache cleared");
cache.Events.Disposed += (sender, e) => Console.WriteLine("Cache disposed");
Implement the IPersistenceDriver<TKey, TValue> interface (all methods are async):
public class FilePersistence : IPersistenceDriver<string, string>
{
private readonly string _directory;
public FilePersistence(string directory)
{
_directory = directory;
Directory.CreateDirectory(directory);
}
public async Task WriteAsync(string key, string data, CancellationToken ct = default)
{
await File.WriteAllTextAsync(Path.Combine(_directory, key), data, ct);
}
public async Task<string> GetAsync(string key, CancellationToken ct = default)
{
return await File.ReadAllTextAsync(Path.Combine(_directory, key), ct);
}
public async Task DeleteAsync(string key, CancellationToken ct = default)
{
await Task.Run(() => File.Delete(Path.Combine(_directory, key)), ct);
}
public async Task ClearAsync(CancellationToken ct = default)
{
foreach (var file in Directory.GetFiles(_directory))
await Task.Run(() => File.Delete(file), ct);
}
public async Task<bool> ExistsAsync(string key, CancellationToken ct = default)
{
return await Task.Run(() => File.Exists(Path.Combine(_directory, key)), ct);
}
public async Task<List<string>> EnumerateAsync(CancellationToken ct = default)
{
return await Task.Run(() => Directory.GetFiles(_directory)
.Select(Path.GetFileName)
.ToList(), ct);
}
}
// Use with cache
var persistence = new FilePersistence("./cache_data");
var cache = new LRUCache<string, string>(1000, 100, persistence);
// Restore from persistence on startup
await cache.PrepopulateAsync();
// All add/remove operations automatically persist
await cache.AddReplaceAsync("key", "value"); // Written to disk
await cache.RemoveAsync("key"); // Deleted from disk
// Sync methods also available (block on async internally)
cache.AddReplace("key2", "value2");
cache.Remove("key2");
var cache = new FIFOCache<string, object>(1000, 100);
// Perform operations
cache.AddReplace("key1", "value1");
cache.Get("key1"); // Hit
cache.TryGet("missing", out _); // Miss
// Get statistics
var stats = cache.GetStatistics();
Console.WriteLine($"Hit Rate: {stats.HitRate:P}");
Console.WriteLine($"Hits: {stats.HitCount}");
Console.WriteLine($"Misses: {stats.MissCount}");
Console.WriteLine($"Evictions: {stats.EvictionCount}");
Console.WriteLine($"Expirations: {stats.ExpirationCount}");
Console.WriteLine($"Current Count: {stats.CurrentCount}");
Console.WriteLine($"Capacity: {stats.Capacity}");
// Reset counters
cache.ResetStatistics();
var cache = new FIFOCache<string, byte[]>(10000, 100);
// Limit cache to 100MB
cache.MaxMemoryBytes = 100 * 1024 * 1024;
// Provide size estimator for your value type
cache.SizeEstimator = bytes => bytes.Length;
// Cache will evict entries if memory limit is exceeded
cache.AddReplace("large", new byte[10 * 1024 * 1024]); // 10MB
Console.WriteLine($"Memory used: {cache.CurrentMemoryBytes} bytes");
var cache = new LRUCache<int, string>(1000, 100);
// Sliding expiration
cache.SlidingExpiration = true;
// Expiration check interval (default: 1000ms)
cache.ExpirationIntervalMs = 500;
// Memory limits
cache.MaxMemoryBytes = 50 * 1024 * 1024; // 50MB
cache.SizeEstimator = str => str.Length * 2; // Unicode estimation
| Method | Description |
|---|---|
AddReplace(key, value, expiration?) |
Add or replace a cache entry |
AddReplaceAsync(key, value, expiration?, ct?) |
Async version of AddReplace |
Get(key) |
Get value (throws if not found) |
GetOrDefault(key, defaultValue?) |
Get value or return default if not found |
TryGet(key, out value) |
Try to get value (returns false if not found) |
GetOrAdd(key, factory, expiration?) |
Get existing or add new value atomically |
GetOrAddAsync(key, asyncFactory, expiration?, ct?) |
Async version of GetOrAdd |
AddOrUpdate(key, addValue, updateFactory, expiration?) |
Add new or update existing value |
AddOrUpdateAsync(key, addValue, asyncUpdateFactory, expiration?, ct?) |
Async version of AddOrUpdate |
Remove(key) |
Remove entry |
RemoveAsync(key, ct?) |
Async version of Remove |
TryRemove(key, out value) |
Try to remove entry, returns removed value |
Contains(key) |
Check if key exists |
Clear() |
Remove all entries |
ClearAsync(ct?) |
Async version of Clear |
Count() |
Get current number of entries |
GetKeys() |
Get all keys |
All() |
Get all key-value pairs |
Oldest() |
Get key of oldest entry |
Newest() |
Get key of newest entry |
Prepopulate() |
Load from persistence layer |
PrepopulateAsync(ct?) |
Async version of Prepopulate |
GetStatistics() |
Get cache statistics |
ResetStatistics() |
Reset counters |
// Basic cache
new FIFOCache<TKey, TValue>(capacity, evictCount);
new LRUCache<TKey, TValue>(capacity, evictCount);
// With custom key comparer
new FIFOCache<TKey, TValue>(capacity, evictCount, comparer: StringComparer.OrdinalIgnoreCase);
// With persistence
new FIFOCache<TKey, TValue>(capacity, evictCount, persistenceDriver);
// With persistence and custom comparer
new LRUCache<TKey, TValue>(capacity, evictCount, persistenceDriver, comparer);
| Property | Description |
|---|---|
Capacity |
Maximum number of entries |
EvictCount |
Number of entries to evict when full |
ExpirationIntervalMs |
How often to check for expired entries (ms) |
SlidingExpiration |
Enable sliding expiration |
MaxMemoryBytes |
Maximum memory limit (0 = unlimited) |
SizeEstimator |
Function to estimate value size |
CurrentMemoryBytes |
Current estimated memory usage |
HitCount |
Total cache hits |
MissCount |
Total cache misses |
EvictionCount |
Total evictions |
ExpirationCount |
Total expirations |
HitRate |
Cache hit rate (0.0 to 1.0) |
KeyComparer |
The equality comparer used for keys |
Events |
Event handlers |
Persistence |
Persistence driver |
All cache operations are thread-safe and can be called concurrently from multiple threads:
var cache = new LRUCache<int, string>(10000, 100);
// Safe to call from multiple threads
Parallel.For(0, 1000, i =>
{
cache.AddReplace(i, $"value{i}");
cache.TryGet(i, out _);
if (i % 10 == 0) cache.TryRemove(i, out _);
});
Choose the Right Cache Type:
Set Appropriate Capacity:
HitRate to tune capacityTune EvictCount:
EvictCount = fewer eviction operations but more items removed at onceEvictCount = more frequent evictions but finer-grainedUse TryGet for Optional Lookups:
TryGet is faster than catching exceptions from GetMinimize Event Handler Work:
Memory Limits:
MaxMemoryBytes if needed; it adds overheadSizeEstimator for best resultsv5.0 is a breaking change. Key updates required:
// v4.x (sync methods)
public class MyDriver : IPersistenceDriver<string, string>
{
public void Write(string key, string data) { }
public string Get(string key) { }
public void Delete(string key) { }
public void Clear() { }
public bool Exists(string key) { }
public List<string> Enumerate() { }
}
// v5.0 (async methods)
public class MyDriver : IPersistenceDriver<string, string>
{
public Task WriteAsync(string key, string data, CancellationToken ct = default) { }
public Task<string> GetAsync(string key, CancellationToken ct = default) { }
public Task DeleteAsync(string key, CancellationToken ct = default) { }
public Task ClearAsync(CancellationToken ct = default) { }
public Task<bool> ExistsAsync(string key, CancellationToken ct = default) { }
public Task<List<string>> EnumerateAsync(CancellationToken ct = default) { }
}
// v4.x
bool removed = cache.TryRemove("key");
// v5.0
bool removed = cache.TryRemove("key", out string value);
// or if you don't need the value:
bool removed = cache.TryRemove("key", out _);
// Custom key comparer
var cache = new FIFOCache<string, int>(100, 10,
comparer: StringComparer.OrdinalIgnoreCase);
// GetOrDefault (doesn't throw)
string value = cache.GetOrDefault("missing", "fallback");
// Async methods
await cache.AddReplaceAsync("key", "value");
var result = await cache.GetOrAddAsync("key", async k => await FetchAsync(k));
await cache.PrepopulateAsync();
// v3.x
cache.Events.Added = handler; // Overwrites all handlers! ❌
// v4.0+
cache.Events.Added += handler; // Adds handler ✅
Contributions are welcome! Please open an issue or PR on GitHub.
See
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 is compatible. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on Caching:
| Package | Downloads |
|---|---|
|
SimpleUdp
SimpleUdp is a super simple way of building UDP clients and servers in C#. |
|
|
LiteGraph
LiteGraph is a property graph database with support for graph relationships, tags, labels, metadata, data, and vectors. |
|
|
View.Models
Database models, services, and supporting classes for for View AI. |
|
|
Verbex
Verbex is a comprehensive inverted index library that enables fast, scalable full-text search capabilities. |
|
|
EASYTools.Verbex
Verbex is a comprehensive inverted index library that enables fast, scalable full-text search capabilities. |
Showing the top 2 popular GitHub repositories that depend on Caching:
| Repository | Stars |
|---|---|
|
litegraphdb/litegraph
Lightweight graph database with relational, vector, and MCP support, designed to power knowledge and artificial intelligence persistence and retrieval.
|
|
|
Guerra24/LRReader
A feature-complete reader and client for LANraragi
|
Breaking change: async APIs, async-only persistence driver, IEqualityComparer support, GetOrDefault, TryRemove with out parameter, thread-safe disposal, race condition fixes in Prepopulate