Microsoft.Azure.StackExchangeRedis
3.2.0
Prefix Reserved
dotnet add package Microsoft.Azure.StackExchangeRedis --version 3.2.0
NuGet\Install-Package Microsoft.Azure.StackExchangeRedis -Version 3.2.0
<PackageReference Include="Microsoft.Azure.StackExchangeRedis" Version="3.2.0" />
paket add Microsoft.Azure.StackExchangeRedis --version 3.2.0
#r "nuget: Microsoft.Azure.StackExchangeRedis, 3.2.0"
// Install Microsoft.Azure.StackExchangeRedis as a Cake Addin #addin nuget:?package=Microsoft.Azure.StackExchangeRedis&version=3.2.0 // Install Microsoft.Azure.StackExchangeRedis as a Cake Tool #tool nuget:?package=Microsoft.Azure.StackExchangeRedis&version=3.2.0
ArtifactType: nupkg Documentation: https://learn.microsoft.com/azure/azure-cache-for-redis Language: C# Tags: Redis,Cache,StackExchange.Redis,Microsoft,Azure
Microsoft.Azure.StackExchangeRedis Extension
The Microsoft.Azure.StackExchangeRedis package is an extension for the StackExchange.Redis client library that enables using Microsoft Entra ID to authenticate connections from a Redis client application to an Azure Cache for Redis resource. This extension acquires an access token for an Azure managed identity or service principal and configures a StackExchange.Redis connection to use the token for authentication. It also maintains the token, proactively refreshing it and re-authenticating the connection to maintain uninterrupted communication with the cache over multiple days.
Usage
See sample/Sample.cs for detailed examples of how to use the extension for all supported authentication scenarios.
High level instructions:
Add a reference to the Microsoft.Azure.StackExchangeRedis NuGet package in your Redis client project.
In your Redis connection code, first create a
ConfigurationOptions
instance. You can use the.Parse()
method to create an instance from a Redis connection string or the cache host name alone.
var configurationOptions = ConfigurationOptions.Parse($"{cacheHostName}:6380");
- Use one of the ConfigureForAzure* extension methods supplied by this package to configure the authentication options:
// DefaultAzureCredential
await configurationOptions.ConfigureForAzureWithTokenCredentialAsync(new DefaultAzureCredential());
// User-assigned managed identity
await configurationOptions.ConfigureForAzureWithUserAssignedManagedIdentityAsync(managedIdentityClientId);
// System-assigned managed identity
await configurationOptions.ConfigureForAzureWithSystemAssignedManagedIdentityAsync();
// Service principal secret
await configurationOptions.ConfigureForAzureWithServicePrincipalAsync(clientId, tenantId, secret);
// Service principal certificate
await configurationOptions.ConfigureForAzureWithServicePrincipalAsync(clientId, tenantId, certificate);
// Service principal certificate with Subject Name + Issuer (SNI) authentication (Microsoft internal use only)
await configurationOptions.ConfigureForAzureAsync(new AzureCacheOptions
{
ClientId = clientId,
ServicePrincipalTenantId = tenantId,
ServicePrincipalCertificate = certificate,
SendX5C = true // Enables Subject Name + Issuer authentication
});
- Create the connection, passing in the
ConfigurationOptions
instance
var connectionMultiplexer = await ConnectionMultiplexer.ConnectAsync(configurationOptions);
- Use the
connectionMultiplexer
to interact with Redis as you normally would.
Running the sample
The sample directory contains a project showing how to connect to an Azure Redis cache using the various authentication mechanisms supported by this extension. Borrow code from this sample for your own project, or simply run it to test the authentication configuration on your cache. It will prompt you for the type of authentication to use and the specific credentials needed. To run the sample:
- Create an Azure Cache for Redis resource
- Configure AAD authentication on your cache using the instructions in Use Microsoft Entra ID for cache authentication
- Optional: if you're using
DefaultAzureCredential
authentication, ensure that either an Azure user is signed on the machine where you're running your code, or environment variables have been set to supply Azure credentials. For details see: How to authenticate .NET apps to Azure services using the .NET Azure SDK.
- Optional: if you're using
dotnet run <path to Microsoft.Azure.StackExchangeRedis.Sample.csproj>
, or run the project in Visual Studio or your favorite IDE- Follow the prompts to enter your credentials and test the connection to the cache
NOTE: The sample project uses a <ProjectReference>
to the extension project in this repo. To run the project on its own using the released Microsoft.Azure.StackExchangeRedis NuGet package, replace the <ProjectReference>
in Microsoft.Azure.StackExchangeRedis.Sample.csproj
with a <PackageReference>
.
Contributing
Please read our CONTRIBUTING.md which outlines all of our policies, procedures, and requirements for contributing to this project.
Versioning
We use SemVer for versioning. For the versions available, see the releases.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Azure.Identity (>= 1.13.1)
- Microsoft.Identity.Client (>= 4.66.1)
- Microsoft.IdentityModel.JsonWebTokens (>= 8.1.2)
- StackExchange.Redis (>= 2.8.16)
-
net6.0
- Azure.Identity (>= 1.13.1)
- Microsoft.Identity.Client (>= 4.66.1)
- Microsoft.IdentityModel.JsonWebTokens (>= 8.1.2)
- StackExchange.Redis (>= 2.8.16)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Microsoft.Azure.StackExchangeRedis:
Package | Downloads |
---|---|
Microsoft.Azure.WebJobs.Extensions.Redis
This package contains binding extensions for Redis. |
|
IglooSoftware.Sdk.Caching
Igloo SDK for sharing commonly used methods. |
|
EndpointDefender
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.