ZiggyCreatures.FusionCache 1.1.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package ZiggyCreatures.FusionCache --version 1.1.0
NuGet\Install-Package ZiggyCreatures.FusionCache -Version 1.1.0
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="ZiggyCreatures.FusionCache" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ZiggyCreatures.FusionCache --version 1.1.0
#r "nuget: ZiggyCreatures.FusionCache, 1.1.0"
#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.
// Install ZiggyCreatures.FusionCache as a Cake Addin
#addin nuget:?package=ZiggyCreatures.FusionCache&version=1.1.0

// Install ZiggyCreatures.FusionCache as a Cake Tool
#tool nuget:?package=ZiggyCreatures.FusionCache&version=1.1.0

FusionCache

FusionCache logo

FusionCache is an easy to use, fast and robust cache with advanced resiliency features and an optional distributed 2nd level.

It was born after years of dealing with all sorts of different types of caches: memory caching, distributed caching, http caching, CDNs, browser cache, offline cache, you name it. So I've tried to put together these experiences and came up with FusionCache.

FusionCache diagram

It uses a memory cache (any impl of the standard IMemoryCache interface) as the primary backing store and optionally a distributed, 2nd level cache (any impl of the standard IDistributedCache interface) as a secondary backing store for better resilience and higher performance, for example in a multi-node scenario or to avoid the typical effects of a cold start (initial empty cache, maybe after a restart).

Optionally, it can also use a backplane: in a multi-node scenario this will send notifications to the other nodes to keep each node's memory cache perfectly synchronized, without any additional work.

FusionCache also includes some advanced resiliency features like a fail-safe mechanism, cache stampede prevention, fine grained soft/hard timeouts with background factory completion, customizable extensive logging and more (see below).

🏆 Award

On August 2021, FusionCache received the Google Open Source Peer Bonus Award: here is the official blogpost.

📕 Getting Started

With đŸĻ„ A Gentle Introduction you'll get yourself comfortable with the overall concepts.

Want to start using it immediately? There's a ⭐ Quick Start for you.

Curious about what you can achieve from start to finish? There's a 👩‍đŸĢ Step By Step guide.

In search of all the docs? There's a page for that, too.

More into videos? The fine folks at On .NET have been kind enough to invite me on the show and listen to me mumbling random caching stuff.

On .NET Talk

✔ Features

These are the key features of FusionCache:

⭐ Quick Start

FusionCache can be installed via the nuget UI (search for the ZiggyCreatures.FusionCache package) or via the nuget package manager console:

PM> Install-Package ZiggyCreatures.FusionCache

As an example, imagine having a method that retrieves a product from your database:

Product GetProductFromDb(int id) {
	// YOUR DATABASE CALL HERE
}

💡 This is using the sync programming model, but it would be equally valid with the newer async one for even better performance.

To start using FusionCache the first thing is create a cache instance:

var cache = new FusionCache(new FusionCacheOptions());

If instead you are using DI (Dependency Injection) use this:

services.AddFusionCache();

We can also specify some global options, like a default FusionCacheEntryOptions object to serve as a default for each call we'll make, with a duration of 2 minutes and a Low priority:

var cache = new FusionCache(new FusionCacheOptions() {
	DefaultEntryOptions = new FusionCacheEntryOptions {
		Duration = TimeSpan.FromMinutes(2),
		Priority = CacheItemPriority.Low
	}
});

Or, using DI, like this:

services.AddFusionCache()
	.WithDefaultEntryOptions(new FusionCacheEntryOptions {
		Duration = TimeSpan.FromMinutes(2),
		Priority = CacheItemPriority.Low
	})
;

Now, to get the product from the cache and, if not there, get it from the database in an optimized way and cache it for 30 sec simply do this:

var id = 42;

cache.GetOrSet<Product>(
	$"product:{id}",
	_ => GetProductFromDb(id),
	TimeSpan.FromSeconds(30)
);

That's it 🎉

đŸ–Ĩī¸ Simulator

Distributed systems are, in general, quite complex to understand.

When using FusionCache with the distributed cache, the backplane and auto-recovery the Simulator can help us seeing the whole picture.

FusionCache Simulator

🧰 Supported Platforms

FusionCache targets .NET Standard 2.0 so any compatible .NET implementation is fine: this means .NET Framework (the old one), .NET Core 2+ and .NET 5/6+ (the new ones), Mono 5.4+ and more (see here for a complete rundown).

NOTE: if you are running on .NET Framework 4.6.1 and want to use .NET Standard packages Microsoft suggests to upgrade to .NET Framework 4.7.2 or higher (see the .NET Standard Documentation) to avoid some known dependency issues.

đŸ’ŧ Is it Production Ready â„ĸī¸ ?

Yes!

FusionCache is being used in production on real world projects for years, happily handling millions of requests.

Considering that the FusionCache packages have been downloaded more than 4 million times (thanks everybody!) it may very well be used even more.

And again, if you are using it please ✉ drop me a line, I'd like to know!

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (19)

Showing the top 5 NuGet packages that depend on ZiggyCreatures.FusionCache:

Package Downloads
ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

FusionCache backplane for Redis based on the StackExchange.Redis library

ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

FusionCache serializer based on Newtonsoft Json.NET

ZiggyCreatures.FusionCache.Serialization.SystemTextJson The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

FusionCache serializer based on System.Text.Json

Auth0Net.DependencyInjection

Dependency Injection, HttpClientFactory & ASP.NET Core extensions for Auth0.NET

ZiggyCreatures.FusionCache.Backplane.Memory The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

FusionCache in memory backplane, used for testing

GitHub repositories (4)

Showing the top 4 popular GitHub repositories that depend on ZiggyCreatures.FusionCache:

Repository Stars
Azure/data-api-builder
Data API builder provides modern REST and GraphQL endpoints to your Azure Databases and on-prem stores.
neozhu/CleanArchitectureWithBlazorServer
This is a repository for creating a Blazor Server dashboard application following the principles of Clean Architecture
TurnerSoftware/CacheTower
An efficient multi-layered caching system for .NET
ikyriak/IdempotentAPI
A .NET library that handles the HTTP write operations (POST and PATCH) that can affect only once for the given request data and idempotency-key by using an ASP.NET Core attribute (filter).
Version Downloads Last updated
1.1.0 288 4/24/2024
1.0.0 66,250 2/29/2024
1.0.0-preview2 2,133 2/23/2024
1.0.0-preview1 1,085 2/11/2024
0.26.0 41,735 2/11/2024
0.25.0 5,373 2/4/2024
0.25.0-preview1 1,052 1/14/2024
0.24.0 179,537 11/12/2023
0.24.0-preview1 1,410 9/3/2023
0.23.0 280,435 8/1/2023
0.22.0 26,596 7/9/2023
0.21.0 345,651 5/28/2023
0.21.0-preview2 1,660 5/21/2023
0.21.0-preview1 1,635 5/1/2023
0.20.0 116,226 4/8/2023
0.20.0-preview2 1,531 3/29/2023
0.20.0-preview1 1,818 3/3/2023
0.19.0 151,719 2/12/2023
0.18.0 98,945 12/18/2022
0.17.0 16,248 12/4/2022
0.16.0 17,207 11/12/2022
0.15.0 144,580 10/26/2022
0.14.0 9,999 10/18/2022
0.13.0 87,695 8/14/2022
0.12.0 8,327 7/19/2022
0.11.1 2,808 7/15/2022
0.11.0 2,913 7/12/2022
0.10.0 148,079 5/1/2022
0.10.0-preview1 1,560 4/23/2022
0.9.0 61,371 2/17/2022
0.1.10-beta3 3,278 2/14/2022
0.1.10-beta2 1,583 2/11/2022
0.1.10-beta1 1,536 2/9/2022
0.1.10-alpha2 1,633 1/30/2022
0.1.10-alpha1 1,450 1/27/2022
0.1.9 49,019 11/23/2021
0.1.8 7,273 11/23/2021
0.1.7 14,980 10/16/2021
0.1.6 36,125 8/1/2021
0.1.5 4,915 6/29/2021
0.1.4 4,587 6/5/2021
0.1.3 4,171 4/3/2021
0.1.2 14,619 2/26/2021
0.1.1 2,720 1/19/2021
0.1.0 2,484 12/31/2020

- Fix: added missing OnMiss event calls (no pun intended) in some distributed cache operations flow
- Fix: fixed a rare deadlock involving eager refresh + cancellation in a specific moment + some very bad luck
- Fix: better fail-safe max duration handling
- Changed: the default value for AutoRecoveryDelay changed from 2s to 5s (to better align with the standard reconnect timing of StackExchange.Redis)
- Perf: some minor memory/cpu optimizations