You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason, my Redis connections randomly stop responding, even though redis.isConnected and redis.isClosed return true and false, indicating that the connection is still open. When running any commands though, such as await pipeline.flush(), the promise doesn't resolve and the command isn't executed. Running CLIENT LIST on the Redis server when the connection begins to stop responding to any requests still shows the client connected, though, after a while, the client also is removed from the CLIENT LIST output. Is this an issue on my end?
The text was updated successfully, but these errors were encountered:
For some reason, my Redis connections randomly stop responding, even though
redis.isConnected
andredis.isClosed
return true and false, indicating that the connection is still open. When running any commands though, such asawait pipeline.flush()
, the promise doesn't resolve and the command isn't executed. RunningCLIENT LIST
on the Redis server when the connection begins to stop responding to any requests still shows the client connected, though, after a while, the client also is removed from theCLIENT LIST
output. Is this an issue on my end?The text was updated successfully, but these errors were encountered: