-
Notifications
You must be signed in to change notification settings - Fork 166
Description
Proposed topic or title
Aspire Azure Managed Redis
Location in table of contents.
Integrations / Azure / Azure Cache for Redis
Reason for the article
In 9.5 we are adding a new feature to enable .AddAzureRedisEnterprise
. See Add support for Azure Redis enterprise (dotnet/aspire#10726).
This new Redis resource has advantages over the existing Azure Cache for Redis. See https://redis.io/blog/introducing-azure-managed-redis/
Along with this, we added a new client integration for authenticating to Azure Redis: Aspire.Microsoft.Azure.StackExchangeRedis
. To enable this in your application:
builder.AddRedisClientBuilder("cache")
.WithAzureAuthentication();
We can now remove this section in docs (https://learn.microsoft.com/dotnet/aspire/caching/azure-cache-for-redis-integration#add-azure-cache-for-redis-authenticated-client) and instead replace it with the above.
Article abstract
Azure Managed Redis is the most advanced Redis offering on Azure to date, supporting both traditional caching and caching for AI apps and workloads, offering vector data structures and vector search, alongside secondary indexing for full-text search, exact matching, geospatial queries, numeric data handling, and fast data processing.
Relevant searches
No response