381 questions
0 votes
0 answers
38 views
Azure Session State Management with Redis fails to load
So lately I was having an issue with Redis and Azure cause I was getting timeouts. I find out that most probably I was trying to serialize an object which had all the navigation properties and the ...
0 votes
0 answers
48 views
Spring boot Azure managed redis integration with managed identity where the Identity token expired every day
Problem statement Connect to Azure managed redis from spring boot (using Jedis/Lettuce) though managed identity where the identity token expires in 24 hours. In my application, the ...
0 votes
1 answer
153 views
Redis Cache Timeout with .NET Application in AKS
I'm using FusionCache on a .NET 8 backend hosted in AKS with multiple pods. The cache is backed by Azure Redis (C3 Standard). Everything was working fine in dev/staging, but since going live in ...
-1 votes
1 answer
124 views
How to update the exising redis cache instance to zonal?
I have an Azure Cache for Redis already and now the region is zonal; I need to update the existing Redis cache to zonal. From portal it works fine but AZ CLI support is not yet available. Using the ...
1 vote
2 answers
176 views
Accessing Azure Cache for Redis database using all keys vs hardcoding key
I have a Azure redis cache and sometimes I need to get all values stored, to do that I use simple iteration like that: keys = db.keys() for key in keys: entry=db.get(key) Unfortunately, the ...
0 votes
1 answer
113 views
az cli not showing redisenterprise keys
this command would work for me az redisenterprise list --resource-group $ResourceGroup it shows a list of redis enterprise cluster names and this shows details az redisenterprise database show --...
0 votes
0 answers
63 views
Sidekiq Terminates Silently When Using Remote Redis URL in Azure Container App (No Errors Logged)
Versions Ruby version: 3.2.6 Rails version: 7.2.2 Sidekiq / Pro / Enterprise version(s): Sidekiq 7.3.5 Problem Sidekiq terminates immediately silently after initialization logs when using a remote ...
0 votes
1 answer
380 views
Azure cache for Redis - Getting Socket failure exception while connection on 6380 port
Trying to connect to the Azure cache for redis instance using SSL port 6380 but no luck. If I change the port to non-ssl 6379, I can able to connect to it, no issue. How to overcome the below issue? ...
0 votes
0 answers
25 views
Redis error in restify server (azure webapp)
I'm having this error using restify and redis on Azure: redis Application has thrown an uncaught exception and its terminated Error read ECONNRESET at TCP.onStreamRead(node:internal/...
0 votes
2 answers
126 views
Azure Redis import: "Not Found. There was no storage account called '<redacted>' in the Azure region 'Brazil South'"
Our automated Redis import started failing with this message: Not Found. There was no storage account called '<redacted>' in the Azure region 'Brazil South'. Our process is as follows: Generate ...
0 votes
1 answer
145 views
How to Enable Defer Option for Azure Redis Enterprise Cluster (Terraform)?
I'm currently working on managing an Azure Redis Enterprise Cluster using Terraform. I need to enable the option to defer Redis DB version updates, which I know can be done manually through the Azure ...
0 votes
1 answer
657 views
How can I toggle public network access for azure redis cache using powershell?
How can I toggle public network access for azure redis cache using powershell? I have tried figuring out a way using Set-AzRedisCache and Get-AzResource through properties and through az resource ...
0 votes
1 answer
2k views
Authenticating Azure Redis Cache with User Assigned Managed Identity in .NET 8 and C# 12
I am currently working on authenticating with Azure Redis Cache using a User Assigned Managed Identity in .NET 8 and C# 12, instead of the traditional connection string method. I have referred to the ...
0 votes
1 answer
118 views
Spring Webflux - Azure Redis giving error: readAddress(..) failed: Connection reset by peer
I'm not sure where I'm gonig wrong. I can connect with redis cli, but not with Spring Boot Webflux. My code: @Bean @Primary fun reactiveRedisConnectionFactory(): ReactiveRedisConnectionFactory ...
1 vote
1 answer
880 views
Not possible to connect to redis server
I am running a .NET application inside a Docker container and trying to connect it to an Azure Redis Cache instance. While I can successfully connect to the Redis instance using redis-cli from within ...