title | description | ms.date | zone_pivot_groups |
---|---|---|---|
.NET Aspire Redis integration |
Learn how to use the .NET Aspire Redis integration, which includes both hosting and client integrations. |
02/05/2025 |
resp-host |
.NET Aspire Redis®* integration
[!INCLUDE includes-hosting-and-client]
:::zone pivot="redis"
Redis is the world's fastest data platform for caching, vector search, and NoSQL databases. The .NET Aspire Redis integration enables you to connect to existing Redis instances, or create new instances from .NET with the docker.io/library/redis
container image.
:::zone-end :::zone pivot="garnet"
Garnet is a a high-performance cache-store from Microsoft Research and complies with the Redis serialization protocol (RESP). The .NET Aspire Redis integration enables you to connect to existing Garnet instances, or create new instances from .NET with the ghcr.io/microsoft/garnet
container image.
:::zone-end :::zone pivot="valkey"
Valkey is a Redis fork and complies with the Redis serialization protocol (RESP). It's a high-performance key/value datastore that supports a variety of workloads such as caching, message queues, and can act as a primary database. The .NET Aspire Redis integration enables you to connect to existing Valkey instances, or create new instances from .NET with the docker.io/valkey/valkey
container image.
:::zone-end
:::zone pivot="redis"
[!INCLUDE redis-app-host]
:::zone-end :::zone pivot="garnet"
[!INCLUDE garnet-app-host]
:::zone-end :::zone pivot="valkey"
[!INCLUDE valkey-app-host]
:::zone-end
[!INCLUDE redis-hosting-health-checks]
[!INCLUDE redis-client-nuget]
In the :::no-loc text="Program.cs"::: file of your client-consuming project, call the xref:Microsoft.Extensions.Hosting.AspireRedisExtensions.AddRedisClient* extension method on any xref:Microsoft.Extensions.Hosting.IHostApplicationBuilder to register an IConnectionMultiplexer
for use via the dependency injection container. The method takes a connection name parameter.
builder.AddRedisClient(connectionName: "cache");
:::zone pivot="redis"
Tip
The connectionName
parameter must match the name used when adding the Redis resource in the app host project. For more information, see Add Redis resource.
:::zone-end :::zone pivot="garnet"
Tip
The connectionName
parameter must match the name used when adding the Garnet resource in the app host project. For more information, see Add Garnet resource.
:::zone-end :::zone pivot="valkey"
Tip
The connectionName
parameter must match the name used when adding the Valkey resource in the app host project. For more information, see Add Valkey resource.
:::zone-end
You can then retrieve the IConnection
instance using dependency injection. For example, to retrieve the connection from an example service:
public class ExampleService(IConnectionMultiplexer connectionMux)
{
// Use connection multiplexer...
}
For more information on dependency injection, see .NET dependency injection.
There might be situations where you want to register multiple IConnectionMultiplexer
instances with different connection names. To register keyed Redis clients, call the xref:Microsoft.Extensions.Hosting.AspireRedisExtensions.AddKeyedRedisClient* method:
builder.AddKeyedRedisClient(name: "chat");
builder.AddKeyedRedisClient(name: "queue");
Then you can retrieve the IConnectionMultiplexer
instances using dependency injection. For example, to retrieve the connection from an example service:
public class ExampleService(
[FromKeyedServices("chat")] IConnectionMultiplexer chatConnectionMux,
[FromKeyedServices("queue")] IConnectionMultiplexer queueConnectionMux)
{
// Use connections...
}
For more information on keyed services, see .NET dependency injection: Keyed services.
The .NET Aspire Stack Exchange Redis client integration provides multiple options to configure the Redis connection based on the requirements and conventions of your project.
:::zone pivot="redis"
When using a connection string from the ConnectionStrings
configuration section, you can provide the name of the connection string when calling xref:Aspire.Hosting.RedisBuilderExtensions.AddRedis*:
builder.AddRedis("cache");
:::zone-end :::zone pivot="garnet"
When using a connection string from the ConnectionStrings
configuration section, you can provide the name of the connection string when calling xref:Aspire.Hosting.GarnetBuilderExtensions.AddGarnet*:
builder.AddGarnet("cache");
:::zone-end :::zone pivot="valkey"
When using a connection string from the ConnectionStrings
configuration section, you can provide the name of the connection string when calling xref:Aspire.Hosting.ValkeyBuilderExtensions.AddValkey*:
builder.AddValkey("cache");
:::zone-end
Then the connection string will be retrieved from the ConnectionStrings
configuration section:
{
"ConnectionStrings": {
"cache": "localhost:6379"
}
}
For more information on how to format this connection string, see the Stack Exchange Redis configuration docs.
[!INCLUDE redis-client-json-settings]
You can also pass the Action<StackExchangeRedisSettings>
delegate to set up some or all the options inline, for example to configure DisableTracing
:
builder.AddRedisClient(
"cache",
static settings => settings.DisableTracing = true);
[!INCLUDE redis-client-health-checks-and-diagnostics]
[!INCLUDE redis-trademark]