redis.clients.jedis
Class BinaryClient

java.lang.Object
  extended by redis.clients.jedis.Connection
      extended by redis.clients.jedis.BinaryClient
Direct Known Subclasses:
Client

public class BinaryClient
extends Connection


Nested Class Summary
static class BinaryClient.LIST_POSITION
           
 
Constructor Summary
BinaryClient(String host)
           
BinaryClient(String host, int port)
           
 
Method Summary
 void append(byte[] key, byte[] value)
           
 void auth(String password)
           
 void bgrewriteaof()
           
 void bgsave()
           
 void blpop(byte[][] args)
           
 void brpop(byte[][] args)
           
 void configGet(String pattern)
           
 void configSet(String parameter, String value)
           
 void dbSize()
           
 void debug(DebugParams params)
           
 void decr(byte[] key)
           
 void decrBy(byte[] key, int integer)
           
 void del(byte[]... keys)
           
 void discard()
           
 void echo(byte[] string)
           
 void exec()
           
 void exists(byte[] key)
           
 void expire(byte[] key, int seconds)
           
 void expireAt(byte[] key, long unixTime)
           
 void flushAll()
           
 void flushDB()
           
 void get(byte[] key)
           
 void getSet(byte[] key, byte[] value)
           
 void hdel(byte[] key, byte[] field)
           
 void hexists(byte[] key, byte[] field)
           
 void hget(byte[] key, byte[] field)
           
 void hgetAll(byte[] key)
           
 void hincrBy(byte[] key, byte[] field, int value)
           
 void hkeys(byte[] key)
           
 void hlen(byte[] key)
           
 void hmget(byte[] key, byte[]... fields)
           
 void hmset(byte[] key, Map<byte[],byte[]> hash)
           
 void hset(byte[] key, byte[] field, byte[] value)
           
 void hsetnx(byte[] key, byte[] field, byte[] value)
           
 void hvals(byte[] key)
           
 void incr(byte[] key)
           
 void incrBy(byte[] key, int integer)
           
 void info()
           
 boolean isInMulti()
           
 void keys(byte[] pattern)
           
 void lastsave()
           
 void lindex(byte[] key, int index)
           
 void linsert(byte[] key, BinaryClient.LIST_POSITION where, byte[] pivot, byte[] value)
           
 void llen(byte[] key)
           
 void lpop(byte[] key)
           
 void lpush(byte[] key, byte[] string)
           
 void lpushx(byte[] key, byte[] string)
           
 void lrange(byte[] key, int start, int end)
           
 void lrem(byte[] key, int count, byte[] value)
           
 void lset(byte[] key, int index, byte[] value)
           
 void ltrim(byte[] key, int start, int end)
           
 void mget(byte[]... keys)
           
 void monitor()
           
 void move(byte[] key, int dbIndex)
           
 void mset(byte[]... keysvalues)
           
 void msetnx(byte[]... keysvalues)
           
 void multi()
           
 void persist(byte[] key)
           
 void ping()
           
 void psubscribe(String[] patterns)
           
 void publish(String channel, String message)
           
 void punsubscribe()
           
 void punsubscribe(String... patterns)
           
 void quit()
           
 void randomKey()
           
 void rename(byte[] oldkey, byte[] newkey)
           
 void renamenx(byte[] oldkey, byte[] newkey)
           
 void rpop(byte[] key)
           
 void rpoplpush(byte[] srckey, byte[] dstkey)
           
 void rpush(byte[] key, byte[] string)
           
 void rpushx(byte[] key, byte[] string)
           
 void sadd(byte[] key, byte[] member)
           
 void save()
           
 void scard(byte[] key)
           
 void sdiff(byte[]... keys)
           
 void sdiffstore(byte[] dstkey, byte[]... keys)
           
 void select(int index)
           
 void set(byte[] key, byte[] value)
           
 void setex(byte[] key, int seconds, byte[] value)
           
 void setnx(byte[] key, byte[] value)
           
 void shutdown()
           
 void sinter(byte[]... keys)
           
 void sinterstore(byte[] dstkey, byte[]... keys)
           
 void sismember(byte[] key, byte[] member)
           
 void slaveof(String host, int port)
           
 void slaveofNoOne()
           
 void smembers(byte[] key)
           
 void smove(byte[] srckey, byte[] dstkey, byte[] member)
           
 void sort(byte[] key)
           
 void sort(byte[] key, byte[] dstkey)
           
 void sort(byte[] key, SortingParams sortingParameters)
           
 void sort(byte[] key, SortingParams sortingParameters, byte[] dstkey)
           
 void spop(byte[] key)
           
 void srandmember(byte[] key)
           
 void srem(byte[] key, byte[] member)
           
 void strlen(byte[] key)
           
 void subscribe(String... channels)
           
 void substr(byte[] key, int start, int end)
           
 void sunion(byte[]... keys)
           
 void sunionstore(byte[] dstkey, byte[]... keys)
           
 void sync()
           
 void ttl(byte[] key)
           
 void type(byte[] key)
           
 void unsubscribe()
           
 void unsubscribe(String... channels)
           
 void unwatch()
           
 void watch(byte[]... keys)
           
 void zadd(byte[] key, double score, byte[] member)
           
 void zcard(byte[] key)
           
 void zcount(byte[] key, double min, double max)
           
 void zincrby(byte[] key, double score, byte[] member)
           
 void zinterstore(byte[] dstkey, byte[]... sets)
           
 void zinterstore(byte[] dstkey, ZParams params, byte[]... sets)
           
 void zrange(byte[] key, int start, int end)
           
 void zrangeByScore(byte[] key, byte[] min, byte[] max)
           
 void zrangeByScore(byte[] key, double min, double max)
           
 void zrangeByScore(byte[] key, double min, double max, int offset, int count)
           
 void zrangeByScoreWithScores(byte[] key, double min, double max)
           
 void zrangeByScoreWithScores(byte[] key, double min, double max, int offset, int count)
           
 void zrangeWithScores(byte[] key, int start, int end)
           
 void zrank(byte[] key, byte[] member)
           
 void zrem(byte[] key, byte[] member)
           
 void zremrangeByRank(byte[] key, int start, int end)
           
 void zremrangeByScore(byte[] key, double start, double end)
           
 void zrevrange(byte[] key, int start, int end)
           
 void zrevrangeWithScores(byte[] key, int start, int end)
           
 void zrevrank(byte[] key, byte[] member)
           
 void zscore(byte[] key, byte[] member)
           
 void zunionstore(byte[] dstkey, byte[]... sets)
           
 void zunionstore(byte[] dstkey, ZParams params, byte[]... sets)
           
 
Methods inherited from class redis.clients.jedis.Connection
connect, disconnect, getAll, getBinaryBulkReply, getBinaryMultiBulkReply, getBulkReply, getHost, getIntegerReply, getMultiBulkReply, getObjectMultiBulkReply, getOne, getPort, getStatusCodeReply, getTimeout, isConnected, rollbackTimeout, sendCommand, sendCommand, sendCommand, setHost, setPort, setTimeout, setTimeoutInfinite
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BinaryClient

public BinaryClient(String host)

BinaryClient

public BinaryClient(String host,
                    int port)
Method Detail

isInMulti

public boolean isInMulti()

ping

public void ping()

set

public void set(byte[] key,
                byte[] value)

get

public void get(byte[] key)

quit

public void quit()

exists

public void exists(byte[] key)

del

public void del(byte[]... keys)

type

public void type(byte[] key)

flushDB

public void flushDB()

keys

public void keys(byte[] pattern)

randomKey

public void randomKey()

rename

public void rename(byte[] oldkey,
                   byte[] newkey)

renamenx

public void renamenx(byte[] oldkey,
                     byte[] newkey)

dbSize

public void dbSize()

expire

public void expire(byte[] key,
                   int seconds)

expireAt

public void expireAt(byte[] key,
                     long unixTime)

ttl

public void ttl(byte[] key)

select

public void select(int index)

move

public void move(byte[] key,
                 int dbIndex)

flushAll

public void flushAll()

getSet

public void getSet(byte[] key,
                   byte[] value)

mget

public void mget(byte[]... keys)

setnx

public void setnx(byte[] key,
                  byte[] value)

setex

public void setex(byte[] key,
                  int seconds,
                  byte[] value)

mset

public void mset(byte[]... keysvalues)

msetnx

public void msetnx(byte[]... keysvalues)

decrBy

public void decrBy(byte[] key,
                   int integer)

decr

public void decr(byte[] key)

incrBy

public void incrBy(byte[] key,
                   int integer)

incr

public void incr(byte[] key)

append

public void append(byte[] key,
                   byte[] value)

substr

public void substr(byte[] key,
                   int start,
                   int end)

hset

public void hset(byte[] key,
                 byte[] field,
                 byte[] value)

hget

public void hget(byte[] key,
                 byte[] field)

hsetnx

public void hsetnx(byte[] key,
                   byte[] field,
                   byte[] value)

hmset

public void hmset(byte[] key,
                  Map<byte[],byte[]> hash)

hmget

public void hmget(byte[] key,
                  byte[]... fields)

hincrBy

public void hincrBy(byte[] key,
                    byte[] field,
                    int value)

hexists

public void hexists(byte[] key,
                    byte[] field)

hdel

public void hdel(byte[] key,
                 byte[] field)

hlen

public void hlen(byte[] key)

hkeys

public void hkeys(byte[] key)

hvals

public void hvals(byte[] key)

hgetAll

public void hgetAll(byte[] key)

rpush

public void rpush(byte[] key,
                  byte[] string)

lpush

public void lpush(byte[] key,
                  byte[] string)

llen

public void llen(byte[] key)

lrange

public void lrange(byte[] key,
                   int start,
                   int end)

ltrim

public void ltrim(byte[] key,
                  int start,
                  int end)

lindex

public void lindex(byte[] key,
                   int index)

lset

public void lset(byte[] key,
                 int index,
                 byte[] value)

lrem

public void lrem(byte[] key,
                 int count,
                 byte[] value)

lpop

public void lpop(byte[] key)

rpop

public void rpop(byte[] key)

rpoplpush

public void rpoplpush(byte[] srckey,
                      byte[] dstkey)

sadd

public void sadd(byte[] key,
                 byte[] member)

smembers

public void smembers(byte[] key)

srem

public void srem(byte[] key,
                 byte[] member)

spop

public void spop(byte[] key)

smove

public void smove(byte[] srckey,
                  byte[] dstkey,
                  byte[] member)

scard

public void scard(byte[] key)

sismember

public void sismember(byte[] key,
                      byte[] member)

sinter

public void sinter(byte[]... keys)

sinterstore

public void sinterstore(byte[] dstkey,
                        byte[]... keys)

sunion

public void sunion(byte[]... keys)

sunionstore

public void sunionstore(byte[] dstkey,
                        byte[]... keys)

sdiff

public void sdiff(byte[]... keys)

sdiffstore

public void sdiffstore(byte[] dstkey,
                       byte[]... keys)

srandmember

public void srandmember(byte[] key)

zadd

public void zadd(byte[] key,
                 double score,
                 byte[] member)

zrange

public void zrange(byte[] key,
                   int start,
                   int end)

zrem

public void zrem(byte[] key,
                 byte[] member)

zincrby

public void zincrby(byte[] key,
                    double score,
                    byte[] member)

zrank

public void zrank(byte[] key,
                  byte[] member)

zrevrank

public void zrevrank(byte[] key,
                     byte[] member)

zrevrange

public void zrevrange(byte[] key,
                      int start,
                      int end)

zrangeWithScores

public void zrangeWithScores(byte[] key,
                             int start,
                             int end)

zrevrangeWithScores

public void zrevrangeWithScores(byte[] key,
                                int start,
                                int end)

zcard

public void zcard(byte[] key)

zscore

public void zscore(byte[] key,
                   byte[] member)

multi

public void multi()

discard

public void discard()

exec

public void exec()

watch

public void watch(byte[]... keys)

unwatch

public void unwatch()

sort

public void sort(byte[] key)

sort

public void sort(byte[] key,
                 SortingParams sortingParameters)

blpop

public void blpop(byte[][] args)

sort

public void sort(byte[] key,
                 SortingParams sortingParameters,
                 byte[] dstkey)

sort

public void sort(byte[] key,
                 byte[] dstkey)

brpop

public void brpop(byte[][] args)

auth

public void auth(String password)

subscribe

public void subscribe(String... channels)

publish

public void publish(String channel,
                    String message)

unsubscribe

public void unsubscribe()

unsubscribe

public void unsubscribe(String... channels)

psubscribe

public void psubscribe(String[] patterns)

punsubscribe

public void punsubscribe()

punsubscribe

public void punsubscribe(String... patterns)

zcount

public void zcount(byte[] key,
                   double min,
                   double max)

zrangeByScore

public void zrangeByScore(byte[] key,
                          double min,
                          double max)

zrangeByScore

public void zrangeByScore(byte[] key,
                          byte[] min,
                          byte[] max)

zrangeByScore

public void zrangeByScore(byte[] key,
                          double min,
                          double max,
                          int offset,
                          int count)

zrangeByScoreWithScores

public void zrangeByScoreWithScores(byte[] key,
                                    double min,
                                    double max)

zrangeByScoreWithScores

public void zrangeByScoreWithScores(byte[] key,
                                    double min,
                                    double max,
                                    int offset,
                                    int count)

zremrangeByRank

public void zremrangeByRank(byte[] key,
                            int start,
                            int end)

zremrangeByScore

public void zremrangeByScore(byte[] key,
                             double start,
                             double end)

zunionstore

public void zunionstore(byte[] dstkey,
                        byte[]... sets)

zunionstore

public void zunionstore(byte[] dstkey,
                        ZParams params,
                        byte[]... sets)

zinterstore

public void zinterstore(byte[] dstkey,
                        byte[]... sets)

zinterstore

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

save

public void save()

bgsave

public void bgsave()

bgrewriteaof

public void bgrewriteaof()

lastsave

public void lastsave()

shutdown

public void shutdown()

info

public void info()

monitor

public void monitor()

slaveof

public void slaveof(String host,
                    int port)

slaveofNoOne

public void slaveofNoOne()

configGet

public void configGet(String pattern)

configSet

public void configSet(String parameter,
                      String value)

strlen

public void strlen(byte[] key)

sync

public void sync()

lpushx

public void lpushx(byte[] key,
                   byte[] string)

persist

public void persist(byte[] key)

rpushx

public void rpushx(byte[] key,
                   byte[] string)

echo

public void echo(byte[] string)

linsert

public void linsert(byte[] key,
                    BinaryClient.LIST_POSITION where,
                    byte[] pivot,
                    byte[] value)

debug

public void debug(DebugParams params)


Copyright © 2010. All Rights Reserved.