|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectredis.clients.jedis.Queable
redis.clients.jedis.ShardedJedisPipeline
public class ShardedJedisPipeline
| Constructor Summary | |
|---|---|
ShardedJedisPipeline()
|
|
| Method Summary | |
|---|---|
Response<Long> |
append(byte[] key,
byte[] value)
|
Response<Long> |
append(String key,
String value)
|
Response<Long> |
bitcount(byte[] key)
|
Response<Long> |
bitcount(byte[] key,
long start,
long end)
|
Response<Long> |
bitcount(String key)
|
Response<Long> |
bitcount(String key,
long start,
long end)
|
Response<Long> |
bitpos(byte[] key,
boolean value)
|
Response<Long> |
bitpos(byte[] key,
boolean value,
BitPosParams params)
|
Response<Long> |
bitpos(String key,
boolean value)
|
Response<Long> |
bitpos(String key,
boolean value,
BitPosParams params)
|
Response<List<byte[]>> |
blpop(byte[] key)
|
Response<List<String>> |
blpop(String key)
|
Response<List<byte[]>> |
brpop(byte[] key)
|
Response<List<String>> |
brpop(String key)
|
Response<Long> |
decr(byte[] key)
|
Response<Long> |
decr(String key)
|
Response<Long> |
decrBy(byte[] key,
long integer)
|
Response<Long> |
decrBy(String key,
long integer)
|
Response<Long> |
del(byte[] key)
|
Response<Long> |
del(String key)
|
Response<byte[]> |
dump(byte[] key)
|
Response<byte[]> |
dump(String key)
|
Response<byte[]> |
echo(byte[] string)
|
Response<String> |
echo(String string)
|
Response<String> |
eval(String script)
|
Response<String> |
eval(String script,
int numKeys,
String[] argv)
|
Response<String> |
eval(String script,
List<String> keys,
List<String> args)
|
Response<String> |
evalsha(String script)
|
Response<String> |
evalsha(String sha1,
int numKeys,
String[] argv)
|
Response<String> |
evalsha(String sha1,
List<String> keys,
List<String> args)
|
void |
execute()
Deprecated. |
Response<Boolean> |
exists(byte[] key)
|
Response<Boolean> |
exists(String key)
|
Response<Long> |
expire(byte[] key,
int seconds)
|
Response<Long> |
expire(String key,
int seconds)
|
Response<Long> |
expireAt(byte[] key,
long unixTime)
|
Response<Long> |
expireAt(String key,
long unixTime)
|
Response<byte[]> |
get(byte[] key)
|
Response<String> |
get(String key)
|
Response<Boolean> |
getbit(byte[] key,
long offset)
|
Response<Boolean> |
getbit(String key,
long offset)
|
protected Client |
getClient(byte[] key)
|
protected Client |
getClient(String key)
|
Response<Long> |
getrange(byte[] key,
long startOffset,
long endOffset)
|
Response<String> |
getrange(String key,
long startOffset,
long endOffset)
|
List<Object> |
getResults()
|
Response<byte[]> |
getSet(byte[] key,
byte[] value)
|
Response<String> |
getSet(String key,
String value)
|
Response<Long> |
hdel(byte[] key,
byte[]... field)
|
Response<Long> |
hdel(String key,
String... field)
|
Response<Boolean> |
hexists(byte[] key,
byte[] field)
|
Response<Boolean> |
hexists(String key,
String field)
|
Response<byte[]> |
hget(byte[] key,
byte[] field)
|
Response<String> |
hget(String key,
String field)
|
Response<Map<byte[],byte[]>> |
hgetAll(byte[] key)
|
Response<Map<String,String>> |
hgetAll(String key)
|
Response<Long> |
hincrBy(byte[] key,
byte[] field,
long value)
|
Response<Long> |
hincrBy(String key,
String field,
long value)
|
Response<Double> |
hincrByFloat(byte[] key,
byte[] field,
double increment)
|
Response<Double> |
hincrByFloat(String key,
String field,
double increment)
|
Response<Set<byte[]>> |
hkeys(byte[] key)
|
Response<Set<String>> |
hkeys(String key)
|
Response<Long> |
hlen(byte[] key)
|
Response<Long> |
hlen(String key)
|
Response<List<byte[]>> |
hmget(byte[] key,
byte[]... fields)
|
Response<List<String>> |
hmget(String key,
String... fields)
|
Response<String> |
hmset(byte[] key,
Map<byte[],byte[]> hash)
|
Response<String> |
hmset(String key,
Map<String,String> hash)
|
Response<Long> |
hset(byte[] key,
byte[] field,
byte[] value)
|
Response<Long> |
hset(String key,
String field,
String value)
|
Response<Long> |
hsetnx(byte[] key,
byte[] field,
byte[] value)
|
Response<Long> |
hsetnx(String key,
String field,
String value)
|
Response<List<byte[]>> |
hvals(byte[] key)
|
Response<List<String>> |
hvals(String key)
|
Response<Long> |
incr(byte[] key)
|
Response<Long> |
incr(String key)
|
Response<Long> |
incrBy(byte[] key,
long integer)
|
Response<Long> |
incrBy(String key,
long integer)
|
Response<Double> |
incrByFloat(byte[] key,
double increment)
|
Response<Double> |
incrByFloat(String key,
double increment)
|
Response<byte[]> |
lindex(byte[] key,
long index)
|
Response<String> |
lindex(String key,
long index)
|
Response<Long> |
linsert(byte[] key,
BinaryClient.LIST_POSITION where,
byte[] pivot,
byte[] value)
|
Response<Long> |
linsert(String key,
BinaryClient.LIST_POSITION where,
String pivot,
String value)
|
Response<Long> |
llen(byte[] key)
|
Response<Long> |
llen(String key)
|
Response<byte[]> |
lpop(byte[] key)
|
Response<String> |
lpop(String key)
|
Response<Long> |
lpush(byte[] key,
byte[]... string)
|
Response<Long> |
lpush(String key,
String... string)
|
Response<Long> |
lpushx(byte[] key,
byte[]... bytes)
|
Response<Long> |
lpushx(String key,
String... string)
|
Response<List<byte[]>> |
lrange(byte[] key,
long start,
long end)
|
Response<List<String>> |
lrange(String key,
long start,
long end)
|
Response<Long> |
lrem(byte[] key,
long count,
byte[] value)
|
Response<Long> |
lrem(String key,
long count,
String value)
|
Response<String> |
lset(byte[] key,
long index,
byte[] value)
|
Response<String> |
lset(String key,
long index,
String value)
|
Response<String> |
ltrim(byte[] key,
long start,
long end)
|
Response<String> |
ltrim(String key,
long start,
long end)
|
Response<String> |
migrate(byte[] host,
int port,
byte[] key,
int destinationDb,
int timeout)
|
Response<String> |
migrate(String host,
int port,
String key,
int destinationDb,
int timeout)
|
Response<Long> |
move(byte[] key,
int dbIndex)
|
Response<Long> |
move(String key,
int dbIndex)
|
Response<byte[]> |
objectEncoding(byte[] key)
|
Response<String> |
objectEncoding(String key)
|
Response<Long> |
objectIdletime(byte[] key)
|
Response<Long> |
objectIdletime(String key)
|
Response<Long> |
objectRefcount(byte[] key)
|
Response<Long> |
objectRefcount(String key)
|
Response<Long> |
persist(byte[] key)
|
Response<Long> |
persist(String key)
|
Response<Long> |
pexpire(byte[] key,
int milliseconds)
Deprecated. |
Response<Long> |
pexpire(byte[] key,
long milliseconds)
|
Response<Long> |
pexpire(String key,
int milliseconds)
Deprecated. |
Response<Long> |
pexpire(String key,
long milliseconds)
|
Response<Long> |
pexpireAt(byte[] key,
long millisecondsTimestamp)
|
Response<Long> |
pexpireAt(String key,
long millisecondsTimestamp)
|
Response<Long> |
pfadd(byte[] key,
byte[]... elements)
|
Response<Long> |
pfadd(String key,
String... elements)
|
Response<Long> |
pfcount(byte[] key)
|
Response<Long> |
pfcount(String key)
|
Response<String> |
psetex(byte[] key,
int milliseconds,
byte[] value)
|
Response<String> |
psetex(String key,
int milliseconds,
String value)
|
Response<Long> |
pttl(byte[] key)
|
Response<Long> |
pttl(String key)
|
Response<String> |
restore(byte[] key,
int ttl,
byte[] serializedValue)
|
Response<String> |
restore(String key,
int ttl,
byte[] serializedValue)
|
Response<byte[]> |
rpop(byte[] key)
|
Response<String> |
rpop(String key)
|
Response<Long> |
rpush(byte[] key,
byte[]... string)
|
Response<Long> |
rpush(String key,
String... string)
|
Response<Long> |
rpushx(byte[] key,
byte[]... string)
|
Response<Long> |
rpushx(String key,
String... string)
|
Response<Long> |
sadd(byte[] key,
byte[]... member)
|
Response<Long> |
sadd(String key,
String... member)
|
Response<Long> |
scard(byte[] key)
|
Response<Long> |
scard(String key)
|
Response<String> |
set(byte[] key,
byte[] value)
|
Response<String> |
set(byte[] key,
byte[] value,
byte[] nxxx)
|
Response<String> |
set(byte[] key,
byte[] value,
byte[] nxxx,
byte[] expx,
int time)
|
Response<String> |
set(String key,
String value)
|
Response<String> |
set(String key,
String value,
String nxxx)
|
Response<String> |
set(String key,
String value,
String nxxx,
String expx,
int time)
|
Response<Boolean> |
setbit(byte[] key,
long offset,
byte[] value)
|
Response<Boolean> |
setbit(String key,
long offset,
boolean value)
|
Response<String> |
setex(byte[] key,
int seconds,
byte[] value)
|
Response<String> |
setex(String key,
int seconds,
String value)
|
Response<Long> |
setnx(byte[] key,
byte[] value)
|
Response<Long> |
setnx(String key,
String value)
|
Response<Long> |
setrange(byte[] key,
long offset,
byte[] value)
|
Response<Long> |
setrange(String key,
long offset,
String value)
|
void |
setShardedJedis(BinaryShardedJedis jedis)
|
Response<Boolean> |
sismember(byte[] key,
byte[] member)
|
Response<Boolean> |
sismember(String key,
String member)
|
Response<Set<byte[]>> |
smembers(byte[] key)
|
Response<Set<String>> |
smembers(String key)
|
Response<List<byte[]>> |
sort(byte[] key)
|
Response<List<byte[]>> |
sort(byte[] key,
SortingParams sortingParameters)
|
Response<List<String>> |
sort(String key)
|
Response<List<String>> |
sort(String key,
SortingParams sortingParameters)
|
Response<byte[]> |
spop(byte[] key)
|
Response<String> |
spop(String key)
|
Response<byte[]> |
srandmember(byte[] key)
|
Response<List<byte[]>> |
srandmember(byte[] key,
int count)
|
Response<String> |
srandmember(String key)
|
Response<List<String>> |
srandmember(String key,
int count)
|
Response<Long> |
srem(byte[] key,
byte[]... member)
|
Response<Long> |
srem(String key,
String... member)
|
Response<Long> |
strlen(byte[] key)
|
Response<Long> |
strlen(String key)
|
Response<String> |
substr(byte[] key,
int start,
int end)
|
Response<String> |
substr(String key,
int start,
int end)
|
void |
sync()
Syncronize pipeline by reading all responses. |
List<Object> |
syncAndReturnAll()
Syncronize pipeline by reading all responses. |
Response<Long> |
ttl(byte[] key)
|
Response<Long> |
ttl(String key)
|
Response<String> |
type(byte[] key)
|
Response<String> |
type(String key)
|
Response<Long> |
zadd(byte[] key,
double score,
byte[] member)
|
Response<Long> |
zadd(String key,
double score,
String member)
|
Response<Long> |
zadd(String key,
Map<String,Double> scoreMembers)
|
Response<Long> |
zcard(byte[] key)
|
Response<Long> |
zcard(String key)
|
Response<Long> |
zcount(byte[] key,
double min,
double max)
|
Response<Long> |
zcount(String key,
double min,
double max)
|
Response<Long> |
zcount(String key,
String min,
String max)
|
Response<Double> |
zincrby(byte[] key,
double score,
byte[] member)
|
Response<Double> |
zincrby(String key,
double score,
String member)
|
Response<Long> |
zlexcount(byte[] key,
byte[] min,
byte[] max)
|
Response<Long> |
zlexcount(String key,
String min,
String max)
|
Response<Set<byte[]>> |
zrange(byte[] key,
long start,
long end)
|
Response<Set<String>> |
zrange(String key,
long start,
long end)
|
Response<Set<byte[]>> |
zrangeByLex(byte[] key,
byte[] max,
byte[] min)
|
Response<Set<byte[]>> |
zrangeByLex(byte[] key,
byte[] max,
byte[] min,
int offset,
int count)
|
Response<Set<String>> |
zrangeByLex(String key,
String max,
String min)
|
Response<Set<String>> |
zrangeByLex(String key,
String max,
String min,
int offset,
int count)
|
Response<Set<byte[]>> |
zrangeByScore(byte[] key,
byte[] min,
byte[] max)
|
Response<Set<byte[]>> |
zrangeByScore(byte[] key,
byte[] min,
byte[] max,
int offset,
int count)
|
Response<Set<byte[]>> |
zrangeByScore(byte[] key,
double min,
double max)
|
Response<Set<byte[]>> |
zrangeByScore(byte[] key,
double min,
double max,
int offset,
int count)
|
Response<Set<String>> |
zrangeByScore(String key,
double min,
double max)
|
Response<Set<String>> |
zrangeByScore(String key,
double min,
double max,
int offset,
int count)
|
Response<Set<String>> |
zrangeByScore(String key,
String min,
String max)
|
Response<Set<String>> |
zrangeByScore(String key,
String min,
String max,
int offset,
int count)
|
Response<Set<Tuple>> |
zrangeByScoreWithScores(byte[] key,
byte[] min,
byte[] max)
|
Response<Set<Tuple>> |
zrangeByScoreWithScores(byte[] key,
byte[] min,
byte[] max,
int offset,
int count)
|
Response<Set<Tuple>> |
zrangeByScoreWithScores(byte[] key,
double min,
double max)
|
Response<Set<Tuple>> |
zrangeByScoreWithScores(byte[] key,
double min,
double max,
int offset,
int count)
|
Response<Set<Tuple>> |
zrangeByScoreWithScores(String key,
double min,
double max)
|
Response<Set<Tuple>> |
zrangeByScoreWithScores(String key,
double min,
double max,
int offset,
int count)
|
Response<Set<Tuple>> |
zrangeByScoreWithScores(String key,
String min,
String max)
|
Response<Set<Tuple>> |
zrangeByScoreWithScores(String key,
String min,
String max,
int offset,
int count)
|
Response<Set<Tuple>> |
zrangeWithScores(byte[] key,
long start,
long end)
|
Response<Set<Tuple>> |
zrangeWithScores(String key,
long start,
long end)
|
Response<Long> |
zrank(byte[] key,
byte[] member)
|
Response<Long> |
zrank(String key,
String member)
|
Response<Long> |
zrem(byte[] key,
byte[]... member)
|
Response<Long> |
zrem(String key,
String... member)
|
Response<Long> |
zremrangeByLex(byte[] key,
byte[] min,
byte[] max)
|
Response<Long> |
zremrangeByLex(String key,
String min,
String max)
|
Response<Long> |
zremrangeByRank(byte[] key,
long start,
long end)
|
Response<Long> |
zremrangeByRank(String key,
long start,
long end)
|
Response<Long> |
zremrangeByScore(byte[] key,
byte[] start,
byte[] end)
|
Response<Long> |
zremrangeByScore(byte[] key,
double start,
double end)
|
Response<Long> |
zremrangeByScore(String key,
double start,
double end)
|
Response<Long> |
zremrangeByScore(String key,
String start,
String end)
|
Response<Set<byte[]>> |
zrevrange(byte[] key,
long start,
long end)
|
Response<Set<String>> |
zrevrange(String key,
long start,
long end)
|
Response<Set<byte[]>> |
zrevrangeByScore(byte[] key,
byte[] max,
byte[] min)
|
Response<Set<byte[]>> |
zrevrangeByScore(byte[] key,
byte[] max,
byte[] min,
int offset,
int count)
|
Response<Set<byte[]>> |
zrevrangeByScore(byte[] key,
double max,
double min)
|
Response<Set<byte[]>> |
zrevrangeByScore(byte[] key,
double max,
double min,
int offset,
int count)
|
Response<Set<String>> |
zrevrangeByScore(String key,
double max,
double min)
|
Response<Set<String>> |
zrevrangeByScore(String key,
double max,
double min,
int offset,
int count)
|
Response<Set<String>> |
zrevrangeByScore(String key,
String max,
String min)
|
Response<Set<String>> |
zrevrangeByScore(String key,
String max,
String min,
int offset,
int count)
|
Response<Set<Tuple>> |
zrevrangeByScoreWithScores(byte[] key,
byte[] max,
byte[] min)
|
Response<Set<Tuple>> |
zrevrangeByScoreWithScores(byte[] key,
byte[] max,
byte[] min,
int offset,
int count)
|
Response<Set<Tuple>> |
zrevrangeByScoreWithScores(byte[] key,
double max,
double min)
|
Response<Set<Tuple>> |
zrevrangeByScoreWithScores(byte[] key,
double max,
double min,
int offset,
int count)
|
Response<Set<Tuple>> |
zrevrangeByScoreWithScores(String key,
double max,
double min)
|
Response<Set<Tuple>> |
zrevrangeByScoreWithScores(String key,
double max,
double min,
int offset,
int count)
|
Response<Set<Tuple>> |
zrevrangeByScoreWithScores(String key,
String max,
String min)
|
Response<Set<Tuple>> |
zrevrangeByScoreWithScores(String key,
String max,
String min,
int offset,
int count)
|
Response<Set<Tuple>> |
zrevrangeWithScores(byte[] key,
long start,
long end)
|
Response<Set<Tuple>> |
zrevrangeWithScores(String key,
long start,
long end)
|
Response<Long> |
zrevrank(byte[] key,
byte[] member)
|
Response<Long> |
zrevrank(String key,
String member)
|
Response<Double> |
zscore(byte[] key,
byte[] member)
|
Response<Double> |
zscore(String key,
String member)
|
| Methods inherited from class redis.clients.jedis.Queable |
|---|
clean, generateResponse, getResponse |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ShardedJedisPipeline()
| Method Detail |
|---|
public void setShardedJedis(BinaryShardedJedis jedis)
public List<Object> getResults()
public void sync()
public List<Object> syncAndReturnAll()
@Deprecated public void execute()
protected Client getClient(String key)
protected Client getClient(byte[] key)
public Response<Long> append(String key,
String value)
append in interface RedisPipeline
public Response<Long> append(byte[] key,
byte[] value)
append in interface BinaryRedisPipelinepublic Response<List<String>> blpop(String key)
blpop in interface RedisPipelinepublic Response<List<String>> brpop(String key)
brpop in interface RedisPipelinepublic Response<List<byte[]>> blpop(byte[] key)
blpop in interface BinaryRedisPipelinepublic Response<List<byte[]>> brpop(byte[] key)
brpop in interface BinaryRedisPipelinepublic Response<Long> decr(String key)
decr in interface RedisPipelinepublic Response<Long> decr(byte[] key)
decr in interface BinaryRedisPipeline
public Response<Long> decrBy(String key,
long integer)
decrBy in interface RedisPipeline
public Response<Long> decrBy(byte[] key,
long integer)
decrBy in interface BinaryRedisPipelinepublic Response<Long> del(String key)
del in interface RedisPipelinepublic Response<Long> del(byte[] key)
del in interface BinaryRedisPipelinepublic Response<String> echo(String string)
echo in interface RedisPipelinepublic Response<byte[]> echo(byte[] string)
echo in interface BinaryRedisPipelinepublic Response<Boolean> exists(String key)
exists in interface RedisPipelinepublic Response<Boolean> exists(byte[] key)
exists in interface BinaryRedisPipeline
public Response<Long> expire(String key,
int seconds)
expire in interface RedisPipeline
public Response<Long> expire(byte[] key,
int seconds)
expire in interface BinaryRedisPipeline
public Response<Long> expireAt(String key,
long unixTime)
expireAt in interface RedisPipeline
public Response<Long> expireAt(byte[] key,
long unixTime)
expireAt in interface BinaryRedisPipelinepublic Response<String> get(String key)
get in interface RedisPipelinepublic Response<byte[]> get(byte[] key)
get in interface BinaryRedisPipeline
public Response<Boolean> getbit(String key,
long offset)
getbit in interface RedisPipeline
public Response<Boolean> getbit(byte[] key,
long offset)
getbit in interface BinaryRedisPipeline
public Response<Long> bitpos(String key,
boolean value)
public Response<Long> bitpos(String key,
boolean value,
BitPosParams params)
public Response<Long> bitpos(byte[] key,
boolean value)
public Response<Long> bitpos(byte[] key,
boolean value,
BitPosParams params)
public Response<String> getrange(String key,
long startOffset,
long endOffset)
getrange in interface RedisPipeline
public Response<String> getSet(String key,
String value)
getSet in interface RedisPipeline
public Response<byte[]> getSet(byte[] key,
byte[] value)
getSet in interface BinaryRedisPipeline
public Response<Long> getrange(byte[] key,
long startOffset,
long endOffset)
getrange in interface BinaryRedisPipeline
public Response<Long> hdel(String key,
String... field)
hdel in interface RedisPipeline
public Response<Long> hdel(byte[] key,
byte[]... field)
hdel in interface BinaryRedisPipeline
public Response<Boolean> hexists(String key,
String field)
hexists in interface RedisPipeline
public Response<Boolean> hexists(byte[] key,
byte[] field)
hexists in interface BinaryRedisPipeline
public Response<String> hget(String key,
String field)
hget in interface RedisPipeline
public Response<byte[]> hget(byte[] key,
byte[] field)
hget in interface BinaryRedisPipelinepublic Response<Map<String,String>> hgetAll(String key)
hgetAll in interface RedisPipelinepublic Response<Map<byte[],byte[]>> hgetAll(byte[] key)
hgetAll in interface BinaryRedisPipeline
public Response<Long> hincrBy(String key,
String field,
long value)
hincrBy in interface RedisPipeline
public Response<Long> hincrBy(byte[] key,
byte[] field,
long value)
hincrBy in interface BinaryRedisPipelinepublic Response<Set<String>> hkeys(String key)
hkeys in interface RedisPipelinepublic Response<Set<byte[]>> hkeys(byte[] key)
hkeys in interface BinaryRedisPipelinepublic Response<Long> hlen(String key)
hlen in interface RedisPipelinepublic Response<Long> hlen(byte[] key)
hlen in interface BinaryRedisPipeline
public Response<List<String>> hmget(String key,
String... fields)
hmget in interface RedisPipeline
public Response<List<byte[]>> hmget(byte[] key,
byte[]... fields)
hmget in interface BinaryRedisPipeline
public Response<String> hmset(String key,
Map<String,String> hash)
hmset in interface RedisPipeline
public Response<String> hmset(byte[] key,
Map<byte[],byte[]> hash)
hmset in interface BinaryRedisPipeline
public Response<Long> hset(String key,
String field,
String value)
hset in interface RedisPipeline
public Response<Long> hset(byte[] key,
byte[] field,
byte[] value)
hset in interface BinaryRedisPipeline
public Response<Long> hsetnx(String key,
String field,
String value)
hsetnx in interface RedisPipeline
public Response<Long> hsetnx(byte[] key,
byte[] field,
byte[] value)
hsetnx in interface BinaryRedisPipelinepublic Response<List<String>> hvals(String key)
hvals in interface RedisPipelinepublic Response<List<byte[]>> hvals(byte[] key)
hvals in interface BinaryRedisPipelinepublic Response<Long> incr(String key)
incr in interface RedisPipelinepublic Response<Long> incr(byte[] key)
incr in interface BinaryRedisPipeline
public Response<Long> incrBy(String key,
long integer)
incrBy in interface RedisPipeline
public Response<Long> incrBy(byte[] key,
long integer)
incrBy in interface BinaryRedisPipeline
public Response<String> lindex(String key,
long index)
lindex in interface RedisPipeline
public Response<byte[]> lindex(byte[] key,
long index)
lindex in interface BinaryRedisPipeline
public Response<Long> linsert(String key,
BinaryClient.LIST_POSITION where,
String pivot,
String value)
linsert in interface RedisPipeline
public Response<Long> linsert(byte[] key,
BinaryClient.LIST_POSITION where,
byte[] pivot,
byte[] value)
linsert in interface BinaryRedisPipelinepublic Response<Long> llen(String key)
llen in interface RedisPipelinepublic Response<Long> llen(byte[] key)
llen in interface BinaryRedisPipelinepublic Response<String> lpop(String key)
lpop in interface RedisPipelinepublic Response<byte[]> lpop(byte[] key)
lpop in interface BinaryRedisPipeline
public Response<Long> lpush(String key,
String... string)
lpush in interface RedisPipeline
public Response<Long> lpush(byte[] key,
byte[]... string)
lpush in interface BinaryRedisPipeline
public Response<Long> lpushx(String key,
String... string)
lpushx in interface RedisPipeline
public Response<Long> lpushx(byte[] key,
byte[]... bytes)
lpushx in interface BinaryRedisPipeline
public Response<List<String>> lrange(String key,
long start,
long end)
lrange in interface RedisPipeline
public Response<List<byte[]>> lrange(byte[] key,
long start,
long end)
lrange in interface BinaryRedisPipeline
public Response<Long> lrem(String key,
long count,
String value)
lrem in interface RedisPipeline
public Response<Long> lrem(byte[] key,
long count,
byte[] value)
lrem in interface BinaryRedisPipeline
public Response<String> lset(String key,
long index,
String value)
lset in interface RedisPipeline
public Response<String> lset(byte[] key,
long index,
byte[] value)
lset in interface BinaryRedisPipeline
public Response<String> ltrim(String key,
long start,
long end)
ltrim in interface RedisPipeline
public Response<String> ltrim(byte[] key,
long start,
long end)
ltrim in interface BinaryRedisPipeline
public Response<Long> move(String key,
int dbIndex)
move in interface RedisPipeline
public Response<Long> move(byte[] key,
int dbIndex)
move in interface BinaryRedisPipelinepublic Response<Long> persist(String key)
persist in interface RedisPipelinepublic Response<Long> persist(byte[] key)
persist in interface BinaryRedisPipelinepublic Response<String> rpop(String key)
rpop in interface RedisPipelinepublic Response<byte[]> rpop(byte[] key)
rpop in interface BinaryRedisPipeline
public Response<Long> rpush(String key,
String... string)
rpush in interface RedisPipeline
public Response<Long> rpush(byte[] key,
byte[]... string)
rpush in interface BinaryRedisPipeline
public Response<Long> rpushx(String key,
String... string)
rpushx in interface RedisPipeline
public Response<Long> rpushx(byte[] key,
byte[]... string)
rpushx in interface BinaryRedisPipeline
public Response<Long> sadd(String key,
String... member)
sadd in interface RedisPipeline
public Response<Long> sadd(byte[] key,
byte[]... member)
sadd in interface BinaryRedisPipelinepublic Response<Long> scard(String key)
scard in interface RedisPipelinepublic Response<Long> scard(byte[] key)
scard in interface BinaryRedisPipeline
public Response<String> set(String key,
String value)
set in interface RedisPipeline
public Response<String> set(byte[] key,
byte[] value)
set in interface BinaryRedisPipeline
public Response<Boolean> setbit(String key,
long offset,
boolean value)
setbit in interface RedisPipeline
public Response<Boolean> setbit(byte[] key,
long offset,
byte[] value)
setbit in interface BinaryRedisPipeline
public Response<String> setex(String key,
int seconds,
String value)
setex in interface RedisPipeline
public Response<String> setex(byte[] key,
int seconds,
byte[] value)
setex in interface BinaryRedisPipeline
public Response<Long> setnx(String key,
String value)
setnx in interface RedisPipeline
public Response<Long> setnx(byte[] key,
byte[] value)
setnx in interface BinaryRedisPipeline
public Response<Long> setrange(String key,
long offset,
String value)
setrange in interface BinaryRedisPipelinesetrange in interface RedisPipeline
public Response<Long> setrange(byte[] key,
long offset,
byte[] value)
setrange in interface BinaryRedisPipeline
public Response<Boolean> sismember(String key,
String member)
sismember in interface RedisPipeline
public Response<Boolean> sismember(byte[] key,
byte[] member)
sismember in interface BinaryRedisPipelinepublic Response<Set<String>> smembers(String key)
smembers in interface RedisPipelinepublic Response<Set<byte[]>> smembers(byte[] key)
smembers in interface BinaryRedisPipelinepublic Response<List<String>> sort(String key)
sort in interface RedisPipelinepublic Response<List<byte[]>> sort(byte[] key)
sort in interface BinaryRedisPipeline
public Response<List<String>> sort(String key,
SortingParams sortingParameters)
sort in interface RedisPipeline
public Response<List<byte[]>> sort(byte[] key,
SortingParams sortingParameters)
sort in interface BinaryRedisPipelinepublic Response<String> spop(String key)
spop in interface RedisPipelinepublic Response<byte[]> spop(byte[] key)
spop in interface BinaryRedisPipelinepublic Response<String> srandmember(String key)
srandmember in interface RedisPipeline
public Response<List<String>> srandmember(String key,
int count)
public Response<byte[]> srandmember(byte[] key)
srandmember in interface BinaryRedisPipeline
public Response<List<byte[]>> srandmember(byte[] key,
int count)
public Response<Long> srem(String key,
String... member)
srem in interface RedisPipeline
public Response<Long> srem(byte[] key,
byte[]... member)
srem in interface BinaryRedisPipelinepublic Response<Long> strlen(String key)
strlen in interface RedisPipelinepublic Response<Long> strlen(byte[] key)
strlen in interface BinaryRedisPipeline
public Response<String> substr(String key,
int start,
int end)
substr in interface RedisPipeline
public Response<String> substr(byte[] key,
int start,
int end)
substr in interface BinaryRedisPipelinepublic Response<Long> ttl(String key)
ttl in interface RedisPipelinepublic Response<Long> ttl(byte[] key)
ttl in interface BinaryRedisPipelinepublic Response<String> type(String key)
type in interface RedisPipelinepublic Response<String> type(byte[] key)
type in interface BinaryRedisPipeline
public Response<Long> zadd(String key,
double score,
String member)
zadd in interface RedisPipeline
public Response<Long> zadd(String key,
Map<String,Double> scoreMembers)
public Response<Long> zadd(byte[] key,
double score,
byte[] member)
zadd in interface BinaryRedisPipelinepublic Response<Long> zcard(String key)
zcard in interface RedisPipelinepublic Response<Long> zcard(byte[] key)
zcard in interface BinaryRedisPipeline
public Response<Long> zcount(String key,
double min,
double max)
zcount in interface RedisPipeline
public Response<Long> zcount(String key,
String min,
String max)
public Response<Long> zcount(byte[] key,
double min,
double max)
zcount in interface BinaryRedisPipeline
public Response<Double> zincrby(String key,
double score,
String member)
zincrby in interface RedisPipeline
public Response<Double> zincrby(byte[] key,
double score,
byte[] member)
zincrby in interface BinaryRedisPipeline
public Response<Set<String>> zrange(String key,
long start,
long end)
zrange in interface RedisPipeline
public Response<Set<byte[]>> zrange(byte[] key,
long start,
long end)
zrange in interface BinaryRedisPipeline
public Response<Set<String>> zrangeByScore(String key,
double min,
double max)
zrangeByScore in interface RedisPipeline
public Response<Set<byte[]>> zrangeByScore(byte[] key,
double min,
double max)
zrangeByScore in interface BinaryRedisPipeline
public Response<Set<String>> zrangeByScore(String key,
String min,
String max)
zrangeByScore in interface RedisPipeline
public Response<Set<byte[]>> zrangeByScore(byte[] key,
byte[] min,
byte[] max)
zrangeByScore in interface BinaryRedisPipeline
public Response<Set<String>> zrangeByScore(String key,
double min,
double max,
int offset,
int count)
zrangeByScore in interface RedisPipeline
public Response<Set<String>> zrangeByScore(String key,
String min,
String max,
int offset,
int count)
public Response<Set<byte[]>> zrangeByScore(byte[] key,
double min,
double max,
int offset,
int count)
zrangeByScore in interface BinaryRedisPipeline
public Response<Set<byte[]>> zrangeByScore(byte[] key,
byte[] min,
byte[] max,
int offset,
int count)
zrangeByScore in interface BinaryRedisPipeline
public Response<Set<Tuple>> zrangeByScoreWithScores(String key,
double min,
double max)
zrangeByScoreWithScores in interface RedisPipeline
public Response<Set<Tuple>> zrangeByScoreWithScores(String key,
String min,
String max)
public Response<Set<Tuple>> zrangeByScoreWithScores(byte[] key,
double min,
double max)
zrangeByScoreWithScores in interface BinaryRedisPipeline
public Response<Set<Tuple>> zrangeByScoreWithScores(byte[] key,
byte[] min,
byte[] max)
zrangeByScoreWithScores in interface BinaryRedisPipeline
public Response<Set<Tuple>> zrangeByScoreWithScores(String key,
double min,
double max,
int offset,
int count)
zrangeByScoreWithScores in interface RedisPipeline
public Response<Set<Tuple>> zrangeByScoreWithScores(String key,
String min,
String max,
int offset,
int count)
public Response<Set<Tuple>> zrangeByScoreWithScores(byte[] key,
double min,
double max,
int offset,
int count)
zrangeByScoreWithScores in interface BinaryRedisPipeline
public Response<Set<Tuple>> zrangeByScoreWithScores(byte[] key,
byte[] min,
byte[] max,
int offset,
int count)
zrangeByScoreWithScores in interface BinaryRedisPipeline
public Response<Set<String>> zrevrangeByScore(String key,
double max,
double min)
zrevrangeByScore in interface RedisPipeline
public Response<Set<byte[]>> zrevrangeByScore(byte[] key,
double max,
double min)
zrevrangeByScore in interface BinaryRedisPipeline
public Response<Set<String>> zrevrangeByScore(String key,
String max,
String min)
zrevrangeByScore in interface RedisPipeline
public Response<Set<byte[]>> zrevrangeByScore(byte[] key,
byte[] max,
byte[] min)
zrevrangeByScore in interface BinaryRedisPipeline
public Response<Set<String>> zrevrangeByScore(String key,
double max,
double min,
int offset,
int count)
zrevrangeByScore in interface RedisPipeline
public Response<Set<String>> zrevrangeByScore(String key,
String max,
String min,
int offset,
int count)
public Response<Set<byte[]>> zrevrangeByScore(byte[] key,
double max,
double min,
int offset,
int count)
zrevrangeByScore in interface BinaryRedisPipeline
public Response<Set<byte[]>> zrevrangeByScore(byte[] key,
byte[] max,
byte[] min,
int offset,
int count)
zrevrangeByScore in interface BinaryRedisPipeline
public Response<Set<Tuple>> zrevrangeByScoreWithScores(String key,
double max,
double min)
zrevrangeByScoreWithScores in interface RedisPipeline
public Response<Set<Tuple>> zrevrangeByScoreWithScores(String key,
String max,
String min)
public Response<Set<Tuple>> zrevrangeByScoreWithScores(byte[] key,
double max,
double min)
zrevrangeByScoreWithScores in interface BinaryRedisPipeline
public Response<Set<Tuple>> zrevrangeByScoreWithScores(byte[] key,
byte[] max,
byte[] min)
zrevrangeByScoreWithScores in interface BinaryRedisPipeline
public Response<Set<Tuple>> zrevrangeByScoreWithScores(String key,
double max,
double min,
int offset,
int count)
zrevrangeByScoreWithScores in interface RedisPipeline
public Response<Set<Tuple>> zrevrangeByScoreWithScores(String key,
String max,
String min,
int offset,
int count)
public Response<Set<Tuple>> zrevrangeByScoreWithScores(byte[] key,
double max,
double min,
int offset,
int count)
zrevrangeByScoreWithScores in interface BinaryRedisPipeline
public Response<Set<Tuple>> zrevrangeByScoreWithScores(byte[] key,
byte[] max,
byte[] min,
int offset,
int count)
zrevrangeByScoreWithScores in interface BinaryRedisPipeline
public Response<Set<Tuple>> zrangeWithScores(String key,
long start,
long end)
zrangeWithScores in interface RedisPipeline
public Response<Set<Tuple>> zrangeWithScores(byte[] key,
long start,
long end)
zrangeWithScores in interface BinaryRedisPipeline
public Response<Long> zrank(String key,
String member)
zrank in interface RedisPipeline
public Response<Long> zrank(byte[] key,
byte[] member)
zrank in interface BinaryRedisPipeline
public Response<Long> zrem(String key,
String... member)
zrem in interface RedisPipeline
public Response<Long> zrem(byte[] key,
byte[]... member)
zrem in interface BinaryRedisPipeline
public Response<Long> zremrangeByRank(String key,
long start,
long end)
zremrangeByRank in interface RedisPipeline
public Response<Long> zremrangeByRank(byte[] key,
long start,
long end)
zremrangeByRank in interface BinaryRedisPipeline
public Response<Long> zremrangeByScore(String key,
double start,
double end)
zremrangeByScore in interface RedisPipeline
public Response<Long> zremrangeByScore(String key,
String start,
String end)
public Response<Long> zremrangeByScore(byte[] key,
double start,
double end)
zremrangeByScore in interface BinaryRedisPipeline
public Response<Long> zremrangeByScore(byte[] key,
byte[] start,
byte[] end)
zremrangeByScore in interface BinaryRedisPipeline
public Response<Set<String>> zrevrange(String key,
long start,
long end)
zrevrange in interface RedisPipeline
public Response<Set<byte[]>> zrevrange(byte[] key,
long start,
long end)
zrevrange in interface BinaryRedisPipeline
public Response<Set<Tuple>> zrevrangeWithScores(String key,
long start,
long end)
zrevrangeWithScores in interface RedisPipeline
public Response<Set<Tuple>> zrevrangeWithScores(byte[] key,
long start,
long end)
zrevrangeWithScores in interface BinaryRedisPipeline
public Response<Long> zrevrank(String key,
String member)
zrevrank in interface RedisPipeline
public Response<Long> zrevrank(byte[] key,
byte[] member)
zrevrank in interface BinaryRedisPipeline
public Response<Double> zscore(String key,
String member)
zscore in interface RedisPipeline
public Response<Double> zscore(byte[] key,
byte[] member)
zscore in interface BinaryRedisPipeline
public Response<Long> zlexcount(byte[] key,
byte[] min,
byte[] max)
zlexcount in interface BinaryRedisPipeline
public Response<Long> zlexcount(String key,
String min,
String max)
zlexcount in interface RedisPipeline
public Response<Set<byte[]>> zrangeByLex(byte[] key,
byte[] max,
byte[] min)
zrangeByLex in interface BinaryRedisPipeline
public Response<Set<String>> zrangeByLex(String key,
String max,
String min)
zrangeByLex in interface RedisPipeline
public Response<Set<byte[]>> zrangeByLex(byte[] key,
byte[] max,
byte[] min,
int offset,
int count)
zrangeByLex in interface BinaryRedisPipeline
public Response<Set<String>> zrangeByLex(String key,
String max,
String min,
int offset,
int count)
zrangeByLex in interface RedisPipeline
public Response<Long> zremrangeByLex(byte[] key,
byte[] min,
byte[] max)
zremrangeByLex in interface BinaryRedisPipeline
public Response<Long> zremrangeByLex(String key,
String min,
String max)
zremrangeByLex in interface RedisPipelinepublic Response<Long> bitcount(String key)
bitcount in interface RedisPipeline
public Response<Long> bitcount(String key,
long start,
long end)
bitcount in interface RedisPipelinepublic Response<Long> bitcount(byte[] key)
bitcount in interface BinaryRedisPipeline
public Response<Long> bitcount(byte[] key,
long start,
long end)
bitcount in interface BinaryRedisPipelinepublic Response<byte[]> dump(String key)
public Response<byte[]> dump(byte[] key)
public Response<String> migrate(String host,
int port,
String key,
int destinationDb,
int timeout)
public Response<String> migrate(byte[] host,
int port,
byte[] key,
int destinationDb,
int timeout)
public Response<Long> objectRefcount(String key)
public Response<Long> objectRefcount(byte[] key)
public Response<String> objectEncoding(String key)
public Response<byte[]> objectEncoding(byte[] key)
public Response<Long> objectIdletime(String key)
public Response<Long> objectIdletime(byte[] key)
@Deprecated
public Response<Long> pexpire(String key,
int milliseconds)
@Deprecated
public Response<Long> pexpire(byte[] key,
int milliseconds)
public Response<Long> pexpire(String key,
long milliseconds)
public Response<Long> pexpire(byte[] key,
long milliseconds)
public Response<Long> pexpireAt(String key,
long millisecondsTimestamp)
public Response<Long> pexpireAt(byte[] key,
long millisecondsTimestamp)
public Response<Long> pttl(String key)
public Response<Long> pttl(byte[] key)
public Response<String> restore(String key,
int ttl,
byte[] serializedValue)
public Response<String> restore(byte[] key,
int ttl,
byte[] serializedValue)
public Response<Double> incrByFloat(String key,
double increment)
public Response<Double> incrByFloat(byte[] key,
double increment)
public Response<String> psetex(String key,
int milliseconds,
String value)
public Response<String> psetex(byte[] key,
int milliseconds,
byte[] value)
public Response<String> set(String key,
String value,
String nxxx)
public Response<String> set(byte[] key,
byte[] value,
byte[] nxxx)
public Response<String> set(String key,
String value,
String nxxx,
String expx,
int time)
public Response<String> set(byte[] key,
byte[] value,
byte[] nxxx,
byte[] expx,
int time)
public Response<Double> hincrByFloat(String key,
String field,
double increment)
public Response<Double> hincrByFloat(byte[] key,
byte[] field,
double increment)
public Response<String> eval(String script)
public Response<String> eval(String script,
List<String> keys,
List<String> args)
public Response<String> eval(String script,
int numKeys,
String[] argv)
public Response<String> evalsha(String script)
public Response<String> evalsha(String sha1,
List<String> keys,
List<String> args)
public Response<String> evalsha(String sha1,
int numKeys,
String[] argv)
public Response<Long> pfadd(byte[] key,
byte[]... elements)
pfadd in interface BinaryRedisPipelinepublic Response<Long> pfcount(byte[] key)
pfcount in interface BinaryRedisPipeline
public Response<Long> pfadd(String key,
String... elements)
pfadd in interface RedisPipelinepublic Response<Long> pfcount(String key)
pfcount in interface RedisPipeline
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||