VOOZH about

URL: https://www.nuget.org/packages/Jitbit.FastCache/1.0.7

⇱ NuGet Gallery | Jitbit.FastCache 1.0.7




Jitbit.FastCache 1.0.7

There is a newer version of this package available.
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
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Jitbit.FastCache" Version="1.0.7" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Jitbit.FastCache" Version="1.0.7" />
 
Directory.Packages.props
<PackageReference Include="Jitbit.FastCache" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Jitbit.FastCache --version 1.0.7
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Jitbit.FastCache, 1.0.7"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Jitbit.FastCache@1.0.7
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Jitbit.FastCache&version=1.0.7
 
Install as a Cake Addin
#tool nuget:?package=Jitbit.FastCache&version=1.0.7
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

FastCache

7x-10x faster alternative to MemoryCache. A high-performance, lighweight (8KB dll) and memory cache for .NET.

👁 NuGet version
👁 .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
  • 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.

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 net6.0 is compatible.  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 was computed.  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 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Jitbit.FastCache:

Package Downloads
Wikiled.Text.Analysis

Text Analysis Library

NeoCaptcha.AspnetCore

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Jitbit.FastCache:

Repository Stars
Nexus-Mods/NexusMods.App
Home of the development of the Nexus Mods App
Version Downloads Last Updated
1.3.0 25,010 4/6/2026
1.2.1 156 4/6/2026
1.2.0 12,897 3/9/2026
1.1.3 92,763 12/21/2025
1.1.1 26,100 10/27/2025
1.1.0 222,601 11/5/2024
1.0.11 114,596 5/4/2024
1.0.10 107,710 9/3/2023
1.0.9 3,839 7/30/2023
1.0.8 6,368 6/16/2023
1.0.7 597 6/14/2023
1.0.6 8,514 4/4/2023
1.0.5 15,905 11/9/2022
1.0.4 20,803 9/22/2022
1.0.3 639 9/21/2022
1.0.2 653 9/20/2022
1.0.1 7,245 9/19/2022
1.0.0 1,043 9/19/2022