I'm trying to create a pool of redis ClusterClient connections and want to use RESP3. Unfortunately, while RedisConnectionInfo is exported by the crate, the ProtocolVersion enum is not, and therefore I cannot construct a deadpool_redis::ConnectionInfo struct.:
Is this intentional? If so, is there a different way to specify the protocol version? Because while the crate does export the ClusterClientBuilder, it doesn't look like as a user of the crate, I don't have the ability to provide an instantiated builder to the manager.
I'm trying to create a pool of redis
ClusterClient
connections and want to use RESP3. Unfortunately, whileRedisConnectionInfo
is exported by the crate, theProtocolVersion
enum is not, and therefore I cannot construct adeadpool_redis::ConnectionInfo
struct.:Is this intentional? If so, is there a different way to specify the protocol version? Because while the crate does export the
ClusterClientBuilder
, it doesn't look like as a user of the crate, I don't have the ability to provide an instantiated builder to the manager.