redis.clients.jedis
Interface MultiKeyBinaryRedisPipeline

All Known Implementing Classes:
Pipeline, PipelineBlock, Transaction, TransactionBlock

public interface MultiKeyBinaryRedisPipeline

Multikey related commands (these are split out because they are non-shardable)


Method Summary
 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<Set<byte[]>> keys(byte[] pattern)
           
 Response<List<byte[]>> mget(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<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

del

Response<Long> del(byte[]... keys)

blpop

Response<List<byte[]>> blpop(byte[]... args)

brpop

Response<List<byte[]>> brpop(byte[]... args)

keys

Response<Set<byte[]>> keys(byte[] pattern)

mget

Response<List<byte[]>> mget(byte[]... keys)

mset

Response<String> mset(byte[]... keysvalues)

msetnx

Response<Long> msetnx(byte[]... keysvalues)

rename

Response<String> rename(byte[] oldkey,
                        byte[] newkey)

renamenx

Response<Long> renamenx(byte[] oldkey,
                        byte[] newkey)

rpoplpush

Response<byte[]> rpoplpush(byte[] srckey,
                           byte[] dstkey)

sdiff

Response<Set<byte[]>> sdiff(byte[]... keys)

sdiffstore

Response<Long> sdiffstore(byte[] dstkey,
                          byte[]... keys)

sinter

Response<Set<byte[]>> sinter(byte[]... keys)

sinterstore

Response<Long> sinterstore(byte[] dstkey,
                           byte[]... keys)

smove

Response<Long> smove(byte[] srckey,
                     byte[] dstkey,
                     byte[] member)

sort

Response<Long> sort(byte[] key,
                    SortingParams sortingParameters,
                    byte[] dstkey)

sort

Response<Long> sort(byte[] key,
                    byte[] dstkey)

sunion

Response<Set<byte[]>> sunion(byte[]... keys)

sunionstore

Response<Long> sunionstore(byte[] dstkey,
                           byte[]... keys)

watch

Response<String> watch(byte[]... keys)

zinterstore

Response<Long> zinterstore(byte[] dstkey,
                           byte[]... sets)

zinterstore

Response<Long> zinterstore(byte[] dstkey,
                           ZParams params,
                           byte[]... sets)

zunionstore

Response<Long> zunionstore(byte[] dstkey,
                           byte[]... sets)

zunionstore

Response<Long> zunionstore(byte[] dstkey,
                           ZParams params,
                           byte[]... sets)

brpoplpush

Response<byte[]> brpoplpush(byte[] source,
                            byte[] destination,
                            int timeout)

publish

Response<Long> publish(byte[] channel,
                       byte[] message)

randomKeyBinary

Response<byte[]> randomKeyBinary()

bitop

Response<Long> bitop(BitOP op,
                     byte[] destKey,
                     byte[]... srcKeys)

pfmerge

Response<String> pfmerge(byte[] destkey,
                         byte[]... sourcekeys)

pfcount

Response<Long> pfcount(byte[]... keys)


Copyright © 2014. All rights reserved.