DevKit.ExecutionEngine.Redis
2026.2.27
There is a newer version of this package available.
See the version list below for details.
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" />
<PackageReference Include="DevKit.ExecutionEngine.Redis" />
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
#tool nuget:?package=DevKit.ExecutionEngine.Redis&version=2026.2.27
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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
- Configura la sección
RedisOptionsen tuappsettings.json:
{
"RedisOptions": {
"ConnectionRedis": "localhost:6379",
"Environment": "Development",
"DiasCache": 7
}
}
- 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 | 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Microsoft.Extensions.Options (>= 10.0.2)
- StackExchange.Redis (>= 2.10.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.