RCommon.Caching 2.4.1

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

RCommon.Caching

Provides the core caching abstractions for RCommon, including the ICacheService interface, strongly-typed cache keys, and builder contracts for plugging in memory or distributed caching providers.

Features

  • ICacheService interface with generic GetOrCreate and GetOrCreateAsync methods (read-through / get-or-create pattern)
  • CacheKey value type with validation, max-length enforcement (256 chars), and factory methods for composite and type-scoped keys
  • IMemoryCachingBuilder and IDistributedCachingBuilder contracts for provider-agnostic DI configuration
  • WithMemoryCaching<T> and WithDistributedCaching<T> extension methods on IRCommonBuilder for fluent setup
  • ExpressionCachingStrategy enum for strategy-based resolution of cache services used to cache dynamically compiled expressions

Installation

dotnet add package RCommon.Caching

Usage

This package is typically consumed indirectly through a concrete provider such as RCommon.MemoryCache or RCommon.RedisCache. You can also program against the abstraction directly:

// Inject ICacheService and use the get-or-create pattern
public class ProductService
{
    private readonly ICacheService _cache;

    public ProductService(ICacheService cache)
    {
        _cache = cache;
    }

    public async Task<Product> GetProductAsync(int id)
    {
        return await _cache.GetOrCreateAsync(
            CacheKey.With("product", id.ToString()),
            () => _productRepository.FindAsync(id));
    }
}

Key Types

Type Description
ICacheService Core abstraction providing GetOrCreate and GetOrCreateAsync for read-through caching
CacheKey Strongly-typed cache key with validation, max-length enforcement, and static factory methods
IMemoryCachingBuilder Builder contract for configuring in-memory caching providers
IDistributedCachingBuilder Builder contract for configuring distributed caching providers
ExpressionCachingStrategy Strategy enum used to resolve the appropriate ICacheService for expression caching
CachingBuilderExtensions WithMemoryCaching<T> and WithDistributedCaching<T> extensions on IRCommonBuilder

Documentation

For full documentation, visit rcommon.com.

License

Licensed under the Apache License, Version 2.0.

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 (4)

Showing the top 4 NuGet packages that depend on RCommon.Caching:

Package Downloads
RCommon.ApplicationServices

A cohesive set of infrastructure libraries for dotnet that utilizes abstractions for event handling, persistence, unit of work, mediator, distributed messaging, event bus, CQRS, email, and more

RCommon.Persistence.Caching

A cohesive set of infrastructure libraries for dotnet that utilizes abstractions for event handling, persistence, unit of work, mediator, distributed messaging, event bus, CQRS, email, and more

RCommon.MemoryCache

A cohesive set of infrastructure libraries for dotnet that utilizes abstractions for event handling, persistence, unit of work, mediator, distributed messaging, event bus, CQRS, email, and more

RCommon.RedisCache

A cohesive set of infrastructure libraries for dotnet that utilizes abstractions for event handling, persistence, unit of work, mediator, distributed messaging, event bus, CQRS, email, and more

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.4.1 0 2/18/2026
2.3.2-alpha.0.3 0 2/18/2026
2.3.2-alpha.0.2 0 2/18/2026
2.3.2-alpha.0.1 53 2/9/2026
2.3.1 226 2/5/2026
2.3.0 214 2/3/2026
2.2.2-alpha.0.1 380 12/11/2025
2.2.1-alpha.0.2 128 10/24/2025
2.2.1-alpha.0.1 131 10/24/2025
2.1.11-alpha.0.2 129 10/24/2025
2.1.11-alpha.0.1 102 7/18/2025
2.1.10 389 7/17/2025
2.1.9-alpha.0.1 139 7/17/2025
2.1.2.4 302 5/21/2025
2.1.2.3 310 5/1/2025
2.1.2.2 624 1/23/2025
2.1.2.1 274 1/17/2025
2.1.2 261 1/17/2025
2.1.1.4 267 1/7/2025
0.0.0-alpha.0 150 7/17/2025
Loading failed