I am using ioredis to create a redis client in Node for an appservice that is deployed in Azure. The code looks something like this, enter image description here
I am creating one connection per instance which will live forever until there is a problem during which it will try to re-connect. I am trying to understand if there is any idle timeout configuration in ioredis that will close these connections.
I am using ioredis to create a redis client in Node for an appservice that is deployed in Azure. The code looks something like this, enter image description here
I am creating one connection per instance which will live forever until there is a problem during which it will try to re-connect. I am trying to understand if there is any idle timeout configuration in ioredis that will close these connections. As per the microsoft documentation here,enter image description here some client libraries send a ping to keep the connection open, I am not sure if ioredis is one of them