BinaryJedis
不是线程安全的,但是它可以从JedisPool
getResource
派生而来,该类型返回Jedis
类型。 BinaryJedisCluster
是线程安全的吗?如果不是,是否有一个连接池返回与BinaryJedisCluster
兼容的类型?我想在多线程环境中使用BinaryJedisCluster
答案 0 :(得分:1)
BinaryJedisCluster
是线程安全的。它在内部使用JedisPool
。
精心制作
BinaryJedisCluster
使用JedisClusterConnectionHandler
JedisClusterConnectionHandler
使用JedisClusterInfoCache
JedisClusterInfoCache
使用JedisPool
因此,BinaryJedisCluster
和JedisPool
一样安全。