redis.clients.jedis.commands.MultiKeyBinaryJedisClusterCommands Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jredisearch-jedis Show documentation
Show all versions of jredisearch-jedis Show documentation
Jedis is a blazingly small and sane Redis java client. This is a fork of master
The newest version!
package redis.clients.jedis.commands;
import redis.clients.jedis.BinaryJedisPubSub;
import redis.clients.jedis.BitOP;
import redis.clients.jedis.ScanParams;
import redis.clients.jedis.ScanResult;
import redis.clients.jedis.SortingParams;
import redis.clients.jedis.ZParams;
import java.util.List;
import java.util.Set;
public interface MultiKeyBinaryJedisClusterCommands {
Long del(byte[]... keys);
Long unlink(byte[]... keys);
Long exists(byte[]... keys);
List blpop(int timeout, byte[]... keys);
List brpop(int timeout, byte[]... keys);
List mget(byte[]... keys);
String mset(byte[]... keysvalues);
Long msetnx(byte[]... keysvalues);
String rename(byte[] oldkey, byte[] newkey);
Long renamenx(byte[] oldkey, byte[] newkey);
byte[] rpoplpush(byte[] srckey, byte[] dstkey);
Set sdiff(byte[]... keys);
Long sdiffstore(byte[] dstkey, byte[]... keys);
Set sinter(byte[]... keys);
Long sinterstore(byte[] dstkey, byte[]... keys);
Long smove(byte[] srckey, byte[] dstkey, byte[] member);
Long sort(byte[] key, SortingParams sortingParameters, byte[] dstkey);
Long sort(byte[] key, byte[] dstkey);
Set sunion(byte[]... keys);
Long sunionstore(byte[] dstkey, byte[]... keys);
Long zinterstore(byte[] dstkey, byte[]... sets);
Long zinterstore(byte[] dstkey, ZParams params, byte[]... sets);
Long zunionstore(byte[] dstkey, byte[]... sets);
Long zunionstore(byte[] dstkey, ZParams params, byte[]... sets);
byte[] brpoplpush(byte[] source, byte[] destination, int timeout);
Long publish(byte[] channel, byte[] message);
void subscribe(BinaryJedisPubSub jedisPubSub, byte[]... channels);
void psubscribe(BinaryJedisPubSub jedisPubSub, byte[]... patterns);
Long bitop(BitOP op, byte[] destKey, byte[]... srcKeys);
String pfmerge(byte[] destkey, byte[]... sourcekeys);
Long pfcount(byte[]... keys);
Long touch(byte[]... keys);
ScanResult scan(byte[] cursor, ScanParams params);
Set keys(byte[] pattern);
}