Jitbit.FastCache
1.0.7
See the version list below for details.
dotnet add package Jitbit.FastCache --version 1.0.7
NuGet\Install-Package Jitbit.FastCache -Version 1.0.7
<PackageReference Include="Jitbit.FastCache" Version="1.0.7" />
paket add Jitbit.FastCache --version 1.0.7
#r "nuget: Jitbit.FastCache, 1.0.7"
// Install Jitbit.FastCache as a Cake Addin #addin nuget:?package=Jitbit.FastCache&version=1.0.7 // Install Jitbit.FastCache as a Cake Tool #tool nuget:?package=Jitbit.FastCache&version=1.0.7
FastCache
7x-10x faster alternative to MemoryCache. A high-performance, lighweight (8KB dll) and thread-safe memory cache for .NET.
TL;DR
Basically it's just a ConcurrentDictionary
with expiration.
Benchmarks under Windows
Method | Mean | Error | StdDev | Gen0 | Allocated |
---|---|---|---|---|---|
DictionaryLookup | 65.38 ns | 1.594 ns | 0.087 ns | - | - |
FastCacheLookup | 67.15 ns | 2.582 ns | 0.142 ns | - | - |
MemoryCacheLookup | 426.60 ns | 60.162 ns | 3.298 ns | 0.0200 | 128 B |
FastCacheAddRemove | 99.97 ns | 12.040 ns | 0.660 ns | 0.0254 | 80 B |
MemoryCacheAddRemove | 710.70 ns | 32.415 ns | 1.777 ns | 0.0515 | 328 B |
Benchmarks under Linux (Ubuntu, Docker)
Method | Mean | Error | StdDev | Gen0 | Allocated |
---|---|---|---|---|---|
FastCacheLookup | 94.97 ns | 3.250 ns | 0.178 ns | - | - |
MemoryCacheLookup | 1,051.69 ns | 64.904 ns | 3.558 ns | 0.0191 | 128 B |
FastCacheAddRemove | 148.32 ns | 25.766 ns | 1.412 ns | 0.0253 | 80 B |
MemoryCacheAddRemove | 1,120.75 ns | 767.666 ns | 42.078 ns | 0.0515 | 328 B |
How is FastCache better
Compared to System.Runtime.Caching.MemoryCache
and Microsoft.Extensions.Caching.MemoryCache
FastCache is
- 7X faster reads (11X under Linux!)
- 10x faster writes
- Thread safe and atomic
- Generic (strongly typed keys and values) to avoid boxing/unboxing primitive types
- MemoryCache uses string keys only, so it allocates strings for keying
- MemoryCache comes with performance counters that can't be turned off
- MemoryCache uses heuristic and black magic to evict keys under memory pressure
- MemoryCache uses more memory, can crash during a key scan
Usage
Install via nuget
Install-Package Jitbit.FastCache
Then use
var cache = new FastCache<string, int>();
cache.AddOrUpdate(
key: "answer",
value: 42,
ttl: TimeSpan.FromMinutes(1));
cache.TeyGet("answer", out int value); //value is "42"
cache.GetOrAdd(
key: "answer",
valueFactory: k => 42,
ttl: TimeSpan.FromMilliseconds(100));
Tradeoffs
FastCache uses Environment.TickCount
to monitor items' TTL. Environment.TickCount
is 104x times faster than using DateTime.Now
and 26x times faster than DateTime.UtcNow
.
But Environment.TickCount
is limited to Int32
. Which means it resets to int.MinValue
once overflowed. This is not a problem, we do have a workaround for that. However this means you cannot cache stuff for more than 25 days (2.4 billion milliseconds).
The above is no longer valid, we have switched to .NET 6 targeting and now use TickCount64
which is free of this problem.
Another tradeoff: MemoryCache watches memory usage, and evicts items once it senses memory pressure. FastCache does not do any of that it is up to you to keep your caches reasonably sized. After all, it's just a dictionary.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.