rsalus.CacheProvider 1.1.9

dotnet add package rsalus.CacheProvider --version 1.1.9
NuGet\Install-Package rsalus.CacheProvider -Version 1.1.9
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="rsalus.CacheProvider" Version="1.1.9" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add rsalus.CacheProvider --version 1.1.9
#r "nuget: rsalus.CacheProvider, 1.1.9"
#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 rsalus.CacheProvider as a Cake Addin
#addin nuget:?package=rsalus.CacheProvider&version=1.1.9

// Install rsalus.CacheProvider as a Cake Tool
#tool nuget:?package=rsalus.CacheProvider&version=1.1.9

CacheProvider

The CacheProvider class is a generic class that implements the ICacheProvider<T> interface. It is designed to provide caching functionality for any type of object. The class uses DistributedCache for caching and the IRealProvider<T> interface to retrieve data from the real provider when they are not found in the cache.

How to Instantiate CacheProvider

To instantiate a CacheProvider, you need to provide the following:

  1. An instance of IConnectionMultiplexer for connecting to the Redis server.
  2. An instance of a class that implements the IRealProvider<T> interface. This is the "real provider" that the CacheProvider will use to retrieve s if they are not found in the cache.
  3. An instance of CacheSettings to configure the cache.
  4. An instance of ILogger for logging.

Here's an example of how to instantiate a CacheProvider:

// Get configuration
var connection  = _serviceProvider.GetRequiredService<IConnectionMultiplexer>();
var provider    = _serviceProvider.GetRequiredService<IRealProvider<Payload>>();
var settings    = _serviceProvider.GetRequiredService<IOptions<CacheSettings>>().Value;
var logger      = _serviceProvider.GetRequiredService<ILogger<YourClass>>();

// Create the cache provider
CacheProvider<Payload> cacheProvider = new(connection, provider, settings, logger);
...

Note that you'll need to inject an IConnectionMultiplexer into your service collection if you plan on using DistributedCache. EX:

services.AddSingleton<IConnectionMultiplexer>(serviceProvider =>
{
	return ConnectionMultiplexer.Connect(YourConnectionString);
});

Cache Implementations

DistributedCache

DistributedCache is an implementation that uses the StackExchange.Redis library as its foundation. It leverages the Polly library to handle exceptions and retries, making it robust and resilient. This implementation is compatible with various distributed Redis cache providers, including AWS ElastiCache and Azure Blob Storage.

The DistributedCache class requires a CacheSettings object for configuration and an IConnectionMultiplexer for connecting to the cache provider. It also uses an AsyncPolicyWrap<object> to define a policy for handling exceptions when accessing the cache. This policy includes a retry policy, which retries a specified number of times with a delay, and a fallback policy, which executes a fallback action if an exception is thrown. The class provides asynchronous operations for retrieving, adding, and removing data from the cache.

Usage

Once you have an instance of the CacheProvider class, you can use the GetFromCacheAsync, SetInCacheAsync, RemoveFromCacheAsync, GetBatchFromCacheAsync, SetBatchInCacheAsync, or RemoveBatchFromCacheAsync methods to interact with the cache. Here is an example:

Payload data = new();
string key = "myKey";
Payload response = await cacheProvider.GetFromCacheAsync(data, key);

Prerequisities

  • .NET 8.0 SDK

Dependencies

The project uses the following NuGet packages:

  • Polly ~> 8.3.0
  • StackExchange.Redis ~> 2.7.23
  • Microsoft.EntityFrameworkCore ~> 8.0.2
  • Microsoft.Extensions.Caching.StackExchangeRedis ~> 8.0.2
  • Microsoft.Extensions.DependencyInjection ~> 8.0.0
  • Microsoft.Extensions.Options ~> 8.0.2

License

Cache-Provider is licensed under the MIT License.

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

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.9 98 3/30/2024
1.1.8 86 3/29/2024
1.1.7 78 3/29/2024
1.1.6 86 3/29/2024
1.1.5 92 3/27/2024
1.1.4 88 3/14/2024
1.1.3 73 3/10/2024
1.1.2 73 3/10/2024
1.1.1 97 3/10/2024
1.1.0 73 3/10/2024
1.0.0 60 3/6/2024