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
RedisURI relies on Netty Epoll/Kqueue utilities in getResolvedAddress(). We should move the resolution to SocketAddressResolver to remove Netty dependencies from RedisURI.
The text was updated successfully, but these errors were encountered:
…#1157
Requiring CharSequence is not prone for String caching if the password value is not backed by a String but rather a simple sequence of characters.
…1157
The SocketAddress is now resolved using SocketAddressResolver instead of RedisURI.getResolvedAddress() to resolve a package cycle and to remove dependencies to netty when working with a plain RedisURI object.
RedisURI.getResolvedAddress() is now removed.
RedisURI
relies on Netty Epoll/Kqueue utilities ingetResolvedAddress()
. We should move the resolution toSocketAddressResolver
to remove Netty dependencies fromRedisURI
.The text was updated successfully, but these errors were encountered: