Package redis.clients.jedis.commands
Interface MultiKeyBinaryRedisPipeline
-
- All Known Implementing Classes:
MultiKeyPipelineBase,Pipeline,Transaction
public interface MultiKeyBinaryRedisPipelineMultikey related commands (these are split out because they are non-shardable)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Response<Long>bitop(BitOP op, byte[] destKey, byte[]... srcKeys)Response<List<byte[]>>blpop(byte[]... args)Response<List<byte[]>>brpop(byte[]... args)Response<byte[]>brpoplpush(byte[] source, byte[] destination, int timeout)Response<Long>del(byte[]... keys)Response<Long>exists(byte[]... keys)Response<Long>georadiusByMemberStore(byte[] key, byte[] member, double radius, GeoUnit unit, GeoRadiusParam param, GeoRadiusStoreParam storeParam)Response<Long>georadiusStore(byte[] key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param, GeoRadiusStoreParam storeParam)Response<Set<byte[]>>keys(byte[] pattern)Response<List<byte[]>>mget(byte[]... keys)Response<String>migrate(String host, int port, int destinationDB, int timeout, MigrateParams params, byte[]... keys)Response<String>mset(byte[]... keysvalues)Response<Long>msetnx(byte[]... keysvalues)Response<Long>pfcount(byte[]... keys)Response<String>pfmerge(byte[] destkey, byte[]... sourcekeys)Response<Long>publish(byte[] channel, byte[] message)Response<byte[]>randomKeyBinary()Response<String>rename(byte[] oldkey, byte[] newkey)Response<Long>renamenx(byte[] oldkey, byte[] newkey)Response<byte[]>rpoplpush(byte[] srckey, byte[] dstkey)Response<Set<byte[]>>sdiff(byte[]... keys)Response<Long>sdiffstore(byte[] dstkey, byte[]... keys)Response<Set<byte[]>>sinter(byte[]... keys)Response<Long>sinterstore(byte[] dstkey, byte[]... keys)Response<Long>smove(byte[] srckey, byte[] dstkey, byte[] member)Response<Long>sort(byte[] key, byte[] dstkey)Response<Long>sort(byte[] key, SortingParams sortingParameters, byte[] dstkey)Response<Set<byte[]>>sunion(byte[]... keys)Response<Long>sunionstore(byte[] dstkey, byte[]... keys)Response<Long>touch(byte[]... keys)Response<Long>unlink(byte[]... keys)Response<String>unwatch()Response<String>watch(byte[]... keys)Response<Long>zinterstore(byte[] dstkey, byte[]... sets)Response<Long>zinterstore(byte[] dstkey, ZParams params, byte[]... sets)Response<Long>zunionstore(byte[] dstkey, byte[]... sets)Response<Long>zunionstore(byte[] dstkey, ZParams params, byte[]... sets)
-
-
-
Method Detail
-
rpoplpush
Response<byte[]> rpoplpush(byte[] srckey, byte[] dstkey)
-
sort
Response<Long> sort(byte[] key, SortingParams sortingParameters, byte[] dstkey)
-
brpoplpush
Response<byte[]> brpoplpush(byte[] source, byte[] destination, int timeout)
-
randomKeyBinary
Response<byte[]> randomKeyBinary()
-
migrate
Response<String> migrate(String host, int port, int destinationDB, int timeout, MigrateParams params, byte[]... keys)
-
georadiusStore
Response<Long> georadiusStore(byte[] key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param, GeoRadiusStoreParam storeParam)
-
georadiusByMemberStore
Response<Long> georadiusByMemberStore(byte[] key, byte[] member, double radius, GeoUnit unit, GeoRadiusParam param, GeoRadiusStoreParam storeParam)
-
-