redis.clients.jedis
Interface MultiKeyBinaryCommands

All Known Implementing Classes:
BinaryJedis, Jedis

public interface MultiKeyBinaryCommands


Method Summary
 Long bitop(BitOP op, byte[] destKey, byte[]... srcKeys)
           
 List<byte[]> blpop(byte[]... args)
           
 List<byte[]> blpop(int timeout, byte[]... keys)
           
 List<byte[]> brpop(byte[]... args)
           
 List<byte[]> brpop(int timeout, byte[]... keys)
           
 byte[] brpoplpush(byte[] source, byte[] destination, int timeout)
           
 Long del(byte[]... keys)
           
 Set<byte[]> keys(byte[] pattern)
           
 List<byte[]> mget(byte[]... keys)
           
 String mset(byte[]... keysvalues)
           
 Long msetnx(byte[]... keysvalues)
           
 Long pfcount(byte[]... keys)
           
 String pfmerge(byte[] destkey, byte[]... sourcekeys)
           
 void psubscribe(BinaryJedisPubSub jedisPubSub, byte[]... patterns)
           
 Long publish(byte[] channel, byte[] message)
           
 byte[] randomBinaryKey()
           
 String rename(byte[] oldkey, byte[] newkey)
           
 Long renamenx(byte[] oldkey, byte[] newkey)
           
 byte[] rpoplpush(byte[] srckey, byte[] dstkey)
           
 Set<byte[]> sdiff(byte[]... keys)
           
 Long sdiffstore(byte[] dstkey, byte[]... keys)
           
 Set<byte[]> sinter(byte[]... keys)
           
 Long sinterstore(byte[] dstkey, byte[]... keys)
           
 Long smove(byte[] srckey, byte[] dstkey, byte[] member)
           
 Long sort(byte[] key, byte[] dstkey)
           
 Long sort(byte[] key, SortingParams sortingParameters, byte[] dstkey)
           
 void subscribe(BinaryJedisPubSub jedisPubSub, byte[]... channels)
           
 Set<byte[]> sunion(byte[]... keys)
           
 Long sunionstore(byte[] dstkey, byte[]... keys)
           
 String unwatch()
           
 String watch(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)
           
 

Method Detail

del

Long del(byte[]... keys)

blpop

List<byte[]> blpop(int timeout,
                   byte[]... keys)

brpop

List<byte[]> brpop(int timeout,
                   byte[]... keys)

blpop

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

brpop

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

keys

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

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)

watch

String watch(byte[]... keys)

unwatch

String unwatch()

zinterstore

Long zinterstore(byte[] dstkey,
                 byte[]... sets)

zinterstore

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

zunionstore

Long zunionstore(byte[] dstkey,
                 byte[]... sets)

zunionstore

Long zunionstore(byte[] dstkey,
                 ZParams params,
                 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)

randomBinaryKey

byte[] randomBinaryKey()

bitop

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

pfmerge

String pfmerge(byte[] destkey,
               byte[]... sourcekeys)

pfcount

Long pfcount(byte[]... keys)


Copyright © 2014. All rights reserved.