I have a NodeJS app running in Azure Container Apps that uses Azure Cache for Redis. This connection gets interrupted every 10 minutes and the application has to reconnect. I have a ping setup as per this article in the documentation https://learn.microsoft.com/en-us/azure/azure-cache-for-redis/cache-best-practices-connection#idle-timeout .
When using monitor
in the caches' cli I can see the pings are coming in.
I've also tried not using the RedisClient's ping functionality and just setting a key-value pair every ping interval - this has not worked and the cache still idles.
Any ideas about what could be causing this or how to fix it?
Here, I Configured a connection pool to efficiently manage and reuse Redis connections. Adjust the
max
andmin
values based on your application's requirements. This example uses thegeneric-pool
library.You can also use the connection pool to create and reuse connections.