Package redis.clients.jedis.commands
Interface MultiKeyBinaryJedisClusterCommands
-
- All Known Implementing Classes:
BinaryJedisCluster,JedisCluster
public interface MultiKeyBinaryJedisClusterCommands
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Longbitop(BitOP op, byte[] destKey, byte[]... srcKeys)List<byte[]>blpop(int timeout, byte[]... keys)List<byte[]>brpop(int timeout, byte[]... keys)byte[]brpoplpush(byte[] source, byte[] destination, int timeout)Longdel(byte[]... keys)Longexists(byte[]... keys)LonggeoradiusByMemberStore(byte[] key, byte[] member, double radius, GeoUnit unit, GeoRadiusParam param, GeoRadiusStoreParam storeParam)LonggeoradiusStore(byte[] key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param, GeoRadiusStoreParam storeParam)Set<byte[]>keys(byte[] pattern)List<byte[]>mget(byte[]... keys)Stringmset(byte[]... keysvalues)Longmsetnx(byte[]... keysvalues)Longpfcount(byte[]... keys)Stringpfmerge(byte[] destkey, byte[]... sourcekeys)voidpsubscribe(BinaryJedisPubSub jedisPubSub, byte[]... patterns)Longpublish(byte[] channel, byte[] message)Stringrename(byte[] oldkey, byte[] newkey)Longrenamenx(byte[] oldkey, byte[] newkey)byte[]rpoplpush(byte[] srckey, byte[] dstkey)ScanResult<byte[]>scan(byte[] cursor, ScanParams params)Set<byte[]>sdiff(byte[]... keys)Longsdiffstore(byte[] dstkey, byte[]... keys)Set<byte[]>sinter(byte[]... keys)Longsinterstore(byte[] dstkey, byte[]... keys)Longsmove(byte[] srckey, byte[] dstkey, byte[] member)Longsort(byte[] key, byte[] dstkey)Longsort(byte[] key, SortingParams sortingParameters, byte[] dstkey)voidsubscribe(BinaryJedisPubSub jedisPubSub, byte[]... channels)Set<byte[]>sunion(byte[]... keys)Longsunionstore(byte[] dstkey, byte[]... keys)Longtouch(byte[]... keys)Longunlink(byte[]... keys)List<byte[]>xread(int count, long block, Map<byte[],byte[]> streams)List<byte[]>xreadGroup(byte[] groupname, byte[] consumer, int count, long block, boolean noAck, Map<byte[],byte[]> streams)Longzinterstore(byte[] dstkey, byte[]... sets)Longzinterstore(byte[] dstkey, ZParams params, byte[]... sets)Longzunionstore(byte[] dstkey, byte[]... sets)Longzunionstore(byte[] dstkey, ZParams params, byte[]... sets)
-
-
-
Method Detail
-
del
Long del(byte[]... keys)
-
unlink
Long unlink(byte[]... keys)
-
exists
Long exists(byte[]... keys)
-
blpop
List<byte[]> blpop(int timeout, byte[]... keys)
-
brpop
List<byte[]> brpop(int timeout, byte[]... keys)
-
mget
List<byte[]> mget(byte[]... keys)
-
mset
String mset(byte[]... keysvalues)
-
msetnx
Long msetnx(byte[]... keysvalues)
-
rename
String rename(byte[] oldkey, byte[] newkey)
-
renamenx
Long renamenx(byte[] oldkey, byte[] newkey)
-
rpoplpush
byte[] rpoplpush(byte[] srckey, byte[] dstkey)
-
sdiff
Set<byte[]> sdiff(byte[]... keys)
-
sdiffstore
Long sdiffstore(byte[] dstkey, byte[]... keys)
-
sinter
Set<byte[]> sinter(byte[]... keys)
-
sinterstore
Long sinterstore(byte[] dstkey, byte[]... keys)
-
smove
Long smove(byte[] srckey, byte[] dstkey, byte[] member)
-
sort
Long sort(byte[] key, SortingParams sortingParameters, byte[] dstkey)
-
sort
Long sort(byte[] key, byte[] dstkey)
-
sunion
Set<byte[]> sunion(byte[]... keys)
-
sunionstore
Long sunionstore(byte[] dstkey, byte[]... keys)
-
zinterstore
Long zinterstore(byte[] dstkey, byte[]... sets)
-
zunionstore
Long zunionstore(byte[] dstkey, byte[]... sets)
-
brpoplpush
byte[] brpoplpush(byte[] source, byte[] destination, int timeout)
-
publish
Long publish(byte[] channel, byte[] message)
-
subscribe
void subscribe(BinaryJedisPubSub jedisPubSub, byte[]... channels)
-
psubscribe
void psubscribe(BinaryJedisPubSub jedisPubSub, byte[]... patterns)
-
pfmerge
String pfmerge(byte[] destkey, byte[]... sourcekeys)
-
pfcount
Long pfcount(byte[]... keys)
-
touch
Long touch(byte[]... keys)
-
scan
ScanResult<byte[]> scan(byte[] cursor, ScanParams params)
-
keys
Set<byte[]> keys(byte[] pattern)
-
xreadGroup
List<byte[]> xreadGroup(byte[] groupname, byte[] consumer, int count, long block, boolean noAck, Map<byte[],byte[]> streams)
-
georadiusStore
Long georadiusStore(byte[] key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param, GeoRadiusStoreParam storeParam)
-
georadiusByMemberStore
Long georadiusByMemberStore(byte[] key, byte[] member, double radius, GeoUnit unit, GeoRadiusParam param, GeoRadiusStoreParam storeParam)
-
-