Aspire.StackExchange.Redis
8.2.0
Prefix Reserved
See the version list below for details.
dotnet add package Aspire.StackExchange.Redis --version 8.2.0
NuGet\Install-Package Aspire.StackExchange.Redis -Version 8.2.0
<PackageReference Include="Aspire.StackExchange.Redis" Version="8.2.0" />
paket add Aspire.StackExchange.Redis --version 8.2.0
#r "nuget: Aspire.StackExchange.Redis, 8.2.0"
// Install Aspire.StackExchange.Redis as a Cake Addin #addin nuget:?package=Aspire.StackExchange.Redis&version=8.2.0 // Install Aspire.StackExchange.Redis as a Cake Tool #tool nuget:?package=Aspire.StackExchange.Redis&version=8.2.0
Aspire.StackExchange.Redis library
Registers an IConnectionMultiplexer in the DI container for connecting to Redis®* server. Enables corresponding health check, logging, and telemetry.
Getting started
Prerequisites
- Redis server and the server hostname for connecting a client.
Install the package
Install the .NET Aspire StackExchange Redis library with NuGet:
dotnet add package Aspire.StackExchange.Redis
Usage example
In the Program.cs file of your project, call the AddRedisClient
extension method to register an IConnectionMultiplexer
for use via the dependency injection container. The method takes a connection name parameter.
builder.AddRedisClient("cache");
You can then retrieve the IConnectionMultiplexer
instance using dependency injection. For example, to retrieve the connection multiplexer from a Web API controller:
private readonly IConnectionMultiplexer _cache;
public ProductsController(IConnectionMultiplexer cache)
{
_cache = cache;
}
See the StackExchange.Redis documentation for examples on using the IConnectionMultiplexer
.
Configuration
The .NET Aspire StackExchange Redis component provides multiple options to configure the Redis connection based on the requirements and conventions of your project. Note that at least one host name is required to connect.
Use a connection string
When using a connection string from the ConnectionStrings
configuration section, you can provide the name of the connection string when calling builder.AddRedisClient()
:
builder.AddRedisClient("myRedisConnectionName");
And then the connection string will be retrieved from the ConnectionStrings
configuration section:
{
"ConnectionStrings": {
"myRedisConnectionName": "localhost:6379"
}
}
See the Basic Configuration Settings of the StackExchange.Redis docs for more information on how to format this connection string.
Use configuration providers
The Redis component supports Microsoft.Extensions.Configuration. It loads the StackExchangeRedisSettings
and ConfigurationOptions
from configuration by using the Aspire:StackExchange:Redis
key. Example appsettings.json
that configures some of the options:
{
"Aspire": {
"StackExchange": {
"Redis": {
"ConfigurationOptions": {
"ConnectTimeout": 3000,
"ConnectRetry": 2
},
"DisableHealthChecks": true,
"DisableTracing": false
}
}
}
}
Use inline delegates
You can also pass the Action<StackExchangeRedisSettings> configureSettings
delegate to set up some or all the options inline, for example to disable health checks from code:
builder.AddRedisClient("cache", settings => settings.DisableHealthChecks = true);
You can also setup the ConfigurationOptions using the Action<ConfigurationOptions> configureOptions
delegate parameter of the AddRedisClient
method. For example to set the connection timeout:
builder.AddRedisClient("cache", configureOptions: options => options.ConnectTimeout = 3000);
AppHost extensions
In your AppHost project, install the Aspire.Hosting.Redis
library with NuGet:
dotnet add package Aspire.Hosting.Redis
Then, in the Program.cs file of AppHost
, register a Redis server and consume the connection using the following methods:
var redis = builder.AddRedis("cache");
var myService = builder.AddProject<Projects.MyService>()
.WithReference(redis);
The WithReference
method configures a connection in the MyService
project named cache
. In the Program.cs file of MyService
, the redis connection can be consumed using:
builder.AddRedisClient("cache");
Additional documentation
- https://stackexchange.github.io/StackExchange.Redis/Basics
- https://github.com/dotnet/aspire/tree/main/src/Components/README.md
Feedback & contributing
https://github.com/dotnet/aspire
*Redis is a registered trademark of Redis Ltd. Any rights therein are reserved to Redis Ltd.
Product | Versions 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. |
-
net8.0
- AspNetCore.HealthChecks.Redis (>= 8.0.1)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.2)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 8.0.8)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Options (>= 8.0.2)
- Microsoft.Extensions.Primitives (>= 8.0.0)
- OpenTelemetry.Extensions.Hosting (>= 1.9.0)
- StackExchange.Redis (>= 2.8.0)
NuGet packages (7)
Showing the top 5 NuGet packages that depend on Aspire.StackExchange.Redis:
Package | Downloads |
---|---|
Aspire.StackExchange.Redis.DistributedCaching
A Redis® implementation for IDistributedCache that integrates with Aspire, including health checks, logging, and telemetry. |
|
Aspire.StackExchange.Redis.OutputCaching
A Redis® implementation for ASP.NET Core Output Caching that integrates with Aspire, including health checks, logging, and telemetry. |
|
AICentral.Logging.PIIStripping
Package Description |
|
AICentral.RateLimiting.DistributedRedis
Package Description |
|
FlickFind.Common
Package Description |
GitHub repositories (6)
Showing the top 5 popular GitHub repositories that depend on Aspire.StackExchange.Redis:
Repository | Stars |
---|---|
dotnet/orleans
Cloud Native application framework for .NET
|
|
dotnet/eShop
A reference .NET application implementing an eCommerce site
|
|
abpframework/abp-samples
Sample solutions built with the ABP Framework
|
|
dotnet/aspire-samples
|
|
Azure-Samples/eShopOnAzure
A variant of https://github.com/dotnet/eShop that uses Azure services
|
Version | Downloads | Last updated |
---|---|---|
9.0.0-rc.1.24511.1 | 7,150 | 10/15/2024 |
8.2.2 | 6,836 | 10/24/2024 |
8.2.1 | 19,170 | 9/26/2024 |
8.2.0 | 47,870 | 8/29/2024 |
8.1.0 | 40,907 | 7/23/2024 |
8.0.2 | 26,514 | 6/28/2024 |
8.0.1 | 42,498 | 5/21/2024 |
8.0.0 | 18,529 | 5/21/2024 |
8.0.0-preview.7.24251.11 | 9,354 | 5/7/2024 |
8.0.0-preview.6.24214.1 | 10,735 | 4/23/2024 |
8.0.0-preview.5.24201.12 | 12,243 | 4/9/2024 |
8.0.0-preview.4.24156.9 | 10,555 | 3/12/2024 |
8.0.0-preview.3.24105.21 | 15,310 | 2/13/2024 |
8.0.0-preview.2.23619.3 | 15,246 | 12/20/2023 |
8.0.0-preview.1.23557.2 | 13,431 | 11/14/2023 |