ZiggyCreatures.FusionCache 0.18.0

FusionCache

FusionCache logo

FusionCache is an easy to use, high performance and robust cache with an optional distributed 2nd layer and some advanced features.

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.

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 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).

FusionCache diagram

:trophy: Award

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

✔ Features

These are the key features of FusionCache:

  • 🚀 Cache Stampede prevention: using the optimized GetOrSet[Async] method prevents multiple concurrent factory calls per key, with a guarantee that only 1 factory will be called at the same time for the same key (this avoids overloading the data source when no data is in the cache or when a cache entry expires)
  • 🔀 Optional 2nd level: FusionCache can transparently handle an optional 2nd level cache: anything that implements the standard IDistributedCache interface is supported (eg: Redis, MongoDB, SqlServer, etc)
  • 📢 Backplane: when using a distributed cache as a 2nd layer in a multi-node scenario, you can also enable a backplane to immediately notify the other nodes about changes in the cache, to keep everything synchronized without having to do anything
  • 💣 Fail-Safe: enabling the fail-safe mechanism prevents throwing an exception when a factory or a distributed cache call would fail, by reusing an expired entry as a temporary fallback, all transparently and with no additional code required
  • ⏱ Soft/Hard timeouts: advanced timeouts management prevents waiting for too long when calling a factory or the distributed cache, to avoid hanging your application. It is possible to specify both soft and hard timeouts, and thanks to automatic background completion no data will be wasted
  • 🧙‍♂️ Adaptive Caching: there are times when you don't know upfront what the cache duration for a piece of data should be, maybe because it depends on the object being cached itself. Adaptive caching solves this elegantly
  • ⚡ High performance: FusionCache is optimized to minimize CPU usage and memory allocations to get better performance and lower the cost of your infrastructure all while obtaining a more stable, error resilient application
  • 💫 Natively sync/async: full native support for both the synchronous and asynchronous programming model, with sync/async methods working together harmoniously
  • 📞 Events: there's a comprehensive set of events to subscribe to regarding core events inside of a FusionCache instance, both at a high level and at lower levels (memory/distributed layers)
  • 🧩 Plugins: thanks to a plugin subsystem it is possible to extend FusionCache with additional behaviour, like adding support for metrics, statistics, etc...
  • 📜 Logging: comprehensive, structured, detailed and customizable logging via the standard ILogger interface (you can use Serilog, NLog, etc)
  • 🔃 Dependency Injection: how to work with FusionCache + DI in .NET

⭐ 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(options => {
	options.DefaultEntryOptions = 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 🎉

📖 Documentation

A complete documentation, including examples and common use cases, is available at the official repo page on GitHub.

🧰 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.

Showing the top 20 packages that depend on ZiggyCreatures.FusionCache.

Packages Downloads
ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis
FusionCache backplane for Redis based on the StackExchange.Redis library
4
ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis
FusionCache backplane for Redis based on the StackExchange.Redis library
5
ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis
FusionCache backplane for Redis based on the StackExchange.Redis library
41
ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson
FusionCache serializer based on Newtonsoft Json.NET
4
ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson
FusionCache serializer based on Newtonsoft Json.NET
5
ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson
FusionCache serializer based on Newtonsoft Json.NET
6
ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson
FusionCache serializer based on Newtonsoft Json.NET
44

- Add SkipDistributedCache option - Add SkipDistributedCacheReadWhenStale option - Change EnableBackplaneNotifications option to (inverted) SkipBackplaneNotifications - Better XML docs

Version Downloads Last updated
2.3.0 4 06/10/2025
2.2.0 4 05/23/2025
2.2.0-preview-1 4 04/14/2025
2.1.0 35 03/16/2025
2.0.2 3 06/08/2025
2.0.1 4 04/01/2025
2.0.0 4 04/01/2025
2.0.0-preview-4 4 04/01/2025
2.0.0-preview-3 4 04/01/2025
2.0.0-preview-2 3 04/01/2025
2.0.0-preview-1 3 04/01/2025
1.4.1 4 04/01/2025
1.4.0 4 04/01/2025
1.3.0 4 04/01/2025
1.2.0 4 04/01/2025
1.2.0-preview1 4 04/01/2025
1.1.0 4 04/01/2025
1.0.0 5 04/01/2025
1.0.0-preview2 4 04/01/2025
1.0.0-preview1 4 04/01/2025
0.26.0 4 04/01/2025
0.25.0 4 04/01/2025
0.25.0-preview1 4 04/01/2025
0.24.0 6 04/01/2025
0.24.0-preview1 4 04/01/2025
0.23.0 4 04/01/2025
0.22.0 3 04/01/2025
0.21.0 4 04/01/2025
0.21.0-preview2 4 04/01/2025
0.21.0-preview1 4 04/01/2025
0.20.0 5 04/01/2025
0.20.0-preview2 3 04/01/2025
0.20.0-preview1 4 04/01/2025
0.19.0 5 04/01/2025
0.18.0 4 04/01/2025
0.17.0 4 04/01/2025
0.16.0 4 04/01/2025
0.15.0 3 04/01/2025
0.14.0 4 04/01/2025
0.13.0 4 04/01/2025
0.12.0 4 04/01/2025
0.11.1 4 04/01/2025
0.11.0 4 04/01/2025
0.10.0 4 04/01/2025
0.10.0-preview1 6 04/01/2025
0.9.0 3 04/01/2025
0.1.10-beta3 4 04/01/2025
0.1.10-beta2 4 04/01/2025
0.1.10-beta1 4 04/01/2025
0.1.10-alpha2 6 04/01/2025
0.1.10-alpha1 4 04/01/2025
0.1.9 4 04/01/2025
0.1.8 4 04/01/2025
0.1.7 4 04/01/2025
0.1.6 4 04/01/2025
0.1.5 3 04/01/2025
0.1.4 4 04/01/2025
0.1.3 4 04/01/2025
0.1.2 4 04/01/2025
0.1.1 4 04/01/2025
0.1.0 4 04/01/2025