com.github.obase.jedis.JedisClientSharding Maven / Gradle / Ivy
The newest version!
package com.github.obase.jedis;
import java.util.Collection;
/**
* The shard jedis client bash hash value.
*
* @author hezhaowu
* @since 0.9.1
*/
public interface JedisClientSharding {
JedisClient shard(long key);
JedisClient shard(String key);
JedisClient shard(byte[] key);
Collection getAllShardInfo();
Collection getAllShard();
}