Kck.Caching.InMemory
3.4.0
dotnet add package Kck.Caching.InMemory --version 3.4.0
NuGet\Install-Package Kck.Caching.InMemory -Version 3.4.0
<PackageReference Include="Kck.Caching.InMemory" Version="3.4.0" />
<PackageVersion Include="Kck.Caching.InMemory" Version="3.4.0" />
<PackageReference Include="Kck.Caching.InMemory" />
paket add Kck.Caching.InMemory --version 3.4.0
#r "nuget: Kck.Caching.InMemory, 3.4.0"
#:package Kck.Caching.InMemory@3.4.0
#addin nuget:?package=Kck.Caching.InMemory&version=3.4.0
#tool nuget:?package=Kck.Caching.InMemory&version=3.4.0
Kck.Caching.InMemory
IMemoryCache-backed ICacheService implementation for single-node in-process caching with key-prefix namespacing.
Installation
dotnet add package Kck.Caching.InMemory
Quick Start
// Program.cs
builder.Services.AddKckCachingInMemory(options =>
{
options.KeyPrefix = "myapp";
options.DefaultExpiration = TimeSpan.FromMinutes(10);
});
// Usage
public class CatalogService(ICacheService cache)
{
public async Task<IReadOnlyList<Category>> GetCategoriesAsync(CancellationToken ct)
=> await cache.GetOrSetAsync("categories",
() => _db.Categories.ToListAsync(ct),
ct: ct);
}
Configuration
| Property | Description | Default |
|---|---|---|
KeyPrefix |
Namespace prefix prepended to every cache key | "" |
DefaultExpiration |
Default absolute expiration for cached entries | TimeSpan.FromMinutes(10) |
SizeLimit |
Maximum number of cache entries (0 = unlimited) | 0 |
Resources
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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. |
-
net10.0
- Kck.Caching.Abstractions (>= 3.4.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Kck.Caching.InMemory:
| Package | Downloads |
|---|---|
|
Kck.Bundle.WebApi
Opinionated ASP.NET Core WebAPI starter pack. Registers Serilog, in-memory caching, JWT auth, Argon2 hashing, InMemory event bus, OpenTelemetry, rate limiting, security headers, CORS, and global exception handling in a single AddKckWebApiDefaults() call. |
|
|
Kck.Bundle.MinimalApi
Lightweight ASP.NET Core Minimal API starter pack. Slim variant of the WebAPI bundle — provides Serilog, in-memory caching, JWT, exception handling, and health checks without MediatR pipeline or Argon2 overhead. |
GitHub repositories
This package is not used by any popular GitHub repositories.