Innovabit.DotNet.Interceptors.Caching.Memory 1.0.0.96

dotnet add package Innovabit.DotNet.Interceptors.Caching.Memory --version 1.0.0.96
                    
NuGet\Install-Package Innovabit.DotNet.Interceptors.Caching.Memory -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.Memory" 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.Memory" Version="1.0.0.96" />
                    
Directory.Packages.props
<PackageReference Include="Innovabit.DotNet.Interceptors.Caching.Memory" />
                    
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.Memory --version 1.0.0.96
                    
#r "nuget: Innovabit.DotNet.Interceptors.Caching.Memory, 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.Memory@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.Memory&version=1.0.0.96
                    
Install as a Cake Addin
#tool nuget:?package=Innovabit.DotNet.Interceptors.Caching.Memory&version=1.0.0.96
                    
Install as a Cake Tool

Innovabit.DotNet.Interceptors.Caching.Memory

In-process cache store for Innovabit.DotNet.Interceptors caching, backed by .NET's Microsoft.Extensions.Caching.Memory.IMemoryCache. Values are kept as live object references (no serialization), making it the fastest option for a single process.

services
    .AddInterceptors()
    .AddInMemoryCache()
    .ConfigureCacheDefaults(d => d.DurationSeconds = 60);   // optional

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

AddInMemoryCache() registers the caching interceptor, IMemoryCache and the in-memory ICacheStore. See the Caching.Abstractions README for the [Cache] options and the extension points (ICacheKeyGenerator, CacheDefaults). For caching across processes/instances use the Redis provider instead.

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 87 9/12/2026
1.0.0.95 134 9/5/2026
1.0.0.94 98 9/5/2026
1.0.0.93 97 9/5/2026
1.0.0.90 131 8/17/2026
1.0.0.89 107 8/15/2026
1.0.0.88 106 8/15/2026
1.0.0.87 104 8/13/2026
1.0.0.86 119 8/13/2026