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
…#76
- Breaking change to lettuce 3.x
- RedisClient.connect and RedisClient.connectPubSub changed to return a stateful connection.
New methods RedisClient.connectSentinel and RedisClusterClient.connect for stateful connections.
- RedisClient.connectAsync, RedisClient.connectSentinelAsync and RedisClusterClient.connectCluster are deprecated now.
3.x code:
4.x code:
The other
connect
methods likeconnectAsync
andconnectSentinelAsync
will remain unchanged.Affected
connect
methods are:RedisClient.connect
(provides aStatefulRedisConnection
)RedisClient.connectPubSub
(provides aStatefulRedisPubSubConnection
)RedisClusterClient.connect
(provides aStatefulRedisClusterConnection
)New connect methods:
RedisClient.connectSentinel
(provides aStatefulRedisSentinelConnection
)The text was updated successfully, but these errors were encountered: