Innovabit.DotNet.Interceptors.Caching.Redis 1.0.0.96

dotnet add package Innovabit.DotNet.Interceptors.Caching.Redis --version 1.0.0.96
                    
NuGet\Install-Package Innovabit.DotNet.Interceptors.Caching.Redis -Version 1.0.0.96
                    
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="Innovabit.DotNet.Interceptors.Caching.Redis" Version="1.0.0.96" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Innovabit.DotNet.Interceptors.Caching.Redis" Version="1.0.0.96" />
                    
Directory.Packages.props
<PackageReference Include="Innovabit.DotNet.Interceptors.Caching.Redis" />
                    
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 Innovabit.DotNet.Interceptors.Caching.Redis --version 1.0.0.96
                    
#r "nuget: Innovabit.DotNet.Interceptors.Caching.Redis, 1.0.0.96"
                    
#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 Innovabit.DotNet.Interceptors.Caching.Redis@1.0.0.96
                    
#: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=Innovabit.DotNet.Interceptors.Caching.Redis&version=1.0.0.96
                    
Install as a Cake Addin
#tool nuget:?package=Innovabit.DotNet.Interceptors.Caching.Redis&version=1.0.0.96
                    
Install as a Cake Tool

Innovabit.DotNet.Interceptors.Caching.Redis

Distributed cache store for Innovabit.DotNet.Interceptors caching, backed by Redis through Microsoft.Extensions.Caching.StackExchangeRedis (IDistributedCache). Cached results are shared across every process and instance pointing at the same Redis, so they survive restarts and scale out.

services
    .AddInterceptors()
    .AddRedisCache(o =>
    {
        o.Configuration = "localhost:6379";
        o.InstanceName = "myapp:";
    })
    .ConfigureCacheDefaults(d => d.DurationSeconds = 300);   // optional

services.AddScopedWithInterception<IPriceService, PriceService>();
public class PriceService : IPriceService
{
    [Cache(DurationSeconds = 300)]
    public Task<Quote> GetQuoteAsync(string symbol) => _api.FetchAsync(symbol);
}

Values are serialized to bytes with the configured ICacheSerializer (default: System.Text.Json) before being stored, so cached return types must be serializable. Swap the format with UseCacheSerializer<T>().

AddRedisCache(...) registers the caching interceptor, the StackExchange.Redis IDistributedCache and the Redis ICacheStore. See the Caching.Abstractions README for the [Cache] options and extension points.

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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.0.0.96 94 9/12/2026
1.0.0.95 107 9/5/2026
1.0.0.94 98 9/5/2026
1.0.0.93 94 9/5/2026
1.0.0.90 112 8/17/2026
1.0.0.89 112 8/15/2026
1.0.0.88 110 8/15/2026
1.0.0.87 109 8/13/2026
1.0.0.86 106 8/13/2026