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
We are currently reuse the redis connection if it passes redisConnection.isOpen(). It is stored in StatefulRedisConnection<K,V>.
Since we have got a lot of intermittent commandtimeout, I wonder if the cached conection could be the culprit?
What if I get a new connection by calling getRedisClient().connect() everytime I need? Note that the client object is cached.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
We are currently reuse the redis connection if it passes redisConnection.isOpen(). It is stored in StatefulRedisConnection<K,V>.
Since we have got a lot of intermittent commandtimeout, I wonder if the cached conection could be the culprit?
What if I get a new connection by calling getRedisClient().connect() everytime I need? Note that the client object is cached.
Beta Was this translation helpful? Give feedback.
All reactions