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
Lettuce should internally not block when establishing a connection. This especially applies to connections that perform multiple connection attempts (Sentinel, Cluster). It should be also possible to close a connection asynchronously.
The text was updated successfully, but these errors were encountered:
Lettuce now uses fully asynchronous connects for initial connection, address resolution and Sentinel/Redis Cluster connect. This change eliminates all blocking bits in the connection initialization for:
* Redis Standalone
* Redis Pub/Pub
* Redis Sentinel (not Master/Slave)
* Redis Cluster
* Redis Cluster Pub/Sub
RedisClusterClient now also exposes connectAsync(…) and connect connectPubSubAsync(…). Connection disposal also exposes asynchronous methods via closeAsync() returning a CompletableFuture.
Lettuce should internally not block when establishing a connection. This especially applies to connections that perform multiple connection attempts (Sentinel, Cluster). It should be also possible to close a connection asynchronously.
The text was updated successfully, but these errors were encountered: