All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy