DevKit.ExecutionEngine.Redis 2026.2.27

There is a newer version of this package available.
See the version list below for details.
dotnet add package DevKit.ExecutionEngine.Redis --version 2026.2.27
                    
NuGet\Install-Package DevKit.ExecutionEngine.Redis -Version 2026.2.27
                    
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="DevKit.ExecutionEngine.Redis" Version="2026.2.27" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DevKit.ExecutionEngine.Redis" Version="2026.2.27" />
                    
Directory.Packages.props
<PackageReference Include="DevKit.ExecutionEngine.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 DevKit.ExecutionEngine.Redis --version 2026.2.27
                    
#r "nuget: DevKit.ExecutionEngine.Redis, 2026.2.27"
                    
#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 DevKit.ExecutionEngine.Redis@2026.2.27
                    
#: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=DevKit.ExecutionEngine.Redis&version=2026.2.27
                    
Install as a Cake Addin
#tool nuget:?package=DevKit.ExecutionEngine.Redis&version=2026.2.27
                    
Install as a Cake Tool

DevKit.ExecutionEngine.Redis

Servicio de caché distribuida utilizando Redis como backend, con soporte para generación automática de claves mediante expresiones lambda.

Instalación

  1. Configura la sección RedisOptions en tu appsettings.json:
{
  "RedisOptions": {
    "ConnectionRedis": "localhost:6379",
    "Environment": "Development",
    "DiasCache": 7
  }
}
  1. Registra el servicio en el contenedor de dependencias:
services.AddRedisCache(ServiceLifetime.Scoped);

Uso

Inyección y Consumo

public class MiServicio
{
    private readonly ICacheService _cacheService;

    public MiServicio(ICacheService cacheService)
    {
        _cacheService = cacheService;
    }

    public async Task<List<Producto>> ObtenerProductosAsync()
    {
        // Obtiene del caché o ejecuta la función si no existe
        return await _cacheService.GetOrSetAsync(() => _repositorio.ObtenerProductosConsutlaAsync());
    }
}

Invalidación de Caché

Invalida entradas específicas basadas en la misma expresión utilizada para el registro:

await _cacheService.InvalidateCacheAsync(() => _repositorio.ObtenerProductosConsutlaAsync());

Configuración (RedisOptions)

  • ConnectionRedis: Cadena de conexión (ej. "localhost:6379").
  • Environment: Prefijo para las claves (evita conflictos entre entornos).
  • DiasCache: TTL por defecto para las nuevas entradas.
Product 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. 
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
2026.3.21 0 3/22/2026
2026.3.6 84 3/6/2026
2026.2.27 85 2/27/2026
2026.1.17 120 1/15/2026
2026.1.16 115 1/14/2026
2026.1.15 90 1/14/2026
2026.1.14 100 1/14/2026
2026.1.13 100 1/14/2026
2026.1.12 109 1/14/2026
2026.1.11 96 1/13/2026
2026.1.10 93 1/13/2026