public class JedisCluster extends BinaryJedisCluster implements JedisCommands, MultiKeyJedisClusterCommands, JedisClusterScriptingCommands
| Modifier and Type | Class and Description |
|---|---|
static class |
JedisCluster.Reset |
connectionHandler, DEFAULT_MAX_REDIRECTIONS, DEFAULT_TIMEOUT, HASHSLOTS, maxRedirections| Constructor and Description |
|---|
JedisCluster(HostAndPort node) |
JedisCluster(HostAndPort node,
org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig) |
JedisCluster(HostAndPort node,
int timeout) |
JedisCluster(HostAndPort node,
int timeout,
org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig) |
JedisCluster(HostAndPort node,
int timeout,
int maxRedirections) |
JedisCluster(HostAndPort node,
int timeout,
int maxRedirections,
org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig) |
JedisCluster(HostAndPort node,
int connectionTimeout,
int soTimeout,
int maxRedirections,
org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig) |
JedisCluster(Set<HostAndPort> nodes) |
JedisCluster(Set<HostAndPort> nodes,
org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig) |
JedisCluster(Set<HostAndPort> nodes,
int timeout) |
JedisCluster(Set<HostAndPort> nodes,
int timeout,
org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig) |
JedisCluster(Set<HostAndPort> nodes,
int timeout,
int maxRedirections) |
JedisCluster(Set<HostAndPort> jedisClusterNode,
int timeout,
int maxRedirections,
org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig) |
JedisCluster(Set<HostAndPort> jedisClusterNode,
int connectionTimeout,
int soTimeout,
int maxRedirections,
org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig) |
| Modifier and Type | Method and Description |
|---|---|
Long |
append(String key,
String value) |
Long |
bitcount(String key) |
Long |
bitcount(String key,
long start,
long end) |
Long |
bitop(BitOP op,
String destKey,
String... srcKeys) |
Long |
bitpos(String key,
boolean value) |
Long |
bitpos(String key,
boolean value,
BitPosParams params) |
List<String> |
blpop(int timeout,
String... keys) |
List<String> |
blpop(int timeout,
String key) |
List<String> |
blpop(String arg)
Deprecated.
unusable command, this will be removed at next major release.
|
List<String> |
brpop(int timeout,
String... keys) |
List<String> |
brpop(int timeout,
String key) |
List<String> |
brpop(String arg)
Deprecated.
unusable command, this will be removed at next major release.
|
String |
brpoplpush(String source,
String destination,
int timeout) |
Long |
decr(String key) |
Long |
decrBy(String key,
long integer) |
Long |
del(String... keys) |
Long |
del(String key) |
String |
echo(String string) |
Object |
eval(String script,
int keyCount,
String... params) |
Object |
eval(String script,
List<String> keys,
List<String> args) |
Object |
eval(String script,
String key) |
Object |
evalsha(String sha1,
int keyCount,
String... params) |
Object |
evalsha(String sha1,
List<String> keys,
List<String> args) |
Object |
evalsha(String script,
String key) |
Long |
exists(String... keys) |
Boolean |
exists(String key) |
Long |
expire(String key,
int seconds) |
Long |
expireAt(String key,
long unixTime) |
Long |
geoadd(String key,
double longitude,
double latitude,
String member) |
Long |
geoadd(String key,
Map<String,GeoCoordinate> memberCoordinateMap) |
Double |
geodist(String key,
String member1,
String member2) |
Double |
geodist(String key,
String member1,
String member2,
GeoUnit unit) |
List<String> |
geohash(String key,
String... members) |
List<GeoCoordinate> |
geopos(String key,
String... members) |
List<GeoRadiusResponse> |
georadius(String key,
double longitude,
double latitude,
double radius,
GeoUnit unit) |
List<GeoRadiusResponse> |
georadius(String key,
double longitude,
double latitude,
double radius,
GeoUnit unit,
GeoRadiusParam param) |
List<GeoRadiusResponse> |
georadiusByMember(String key,
String member,
double radius,
GeoUnit unit) |
List<GeoRadiusResponse> |
georadiusByMember(String key,
String member,
double radius,
GeoUnit unit,
GeoRadiusParam param) |
String |
get(String key) |
Boolean |
getbit(String key,
long offset) |
String |
getrange(String key,
long startOffset,
long endOffset) |
String |
getSet(String key,
String value) |
Long |
hdel(String key,
String... field) |
Boolean |
hexists(String key,
String field) |
String |
hget(String key,
String field) |
Map<String,String> |
hgetAll(String key) |
Long |
hincrBy(String key,
String field,
long value) |
Double |
hincrByFloat(String key,
String field,
double value) |
Set<String> |
hkeys(String key) |
Long |
hlen(String key) |
List<String> |
hmget(String key,
String... fields) |
String |
hmset(String key,
Map<String,String> hash) |
ScanResult<Map.Entry<String,String>> |
hscan(String key,
int cursor)
Deprecated.
|
ScanResult<Map.Entry<String,String>> |
hscan(String key,
String cursor) |
ScanResult<Map.Entry<String,String>> |
hscan(String key,
String cursor,
ScanParams params) |
Long |
hset(String key,
String field,
String value) |
Long |
hsetnx(String key,
String field,
String value) |
List<String> |
hvals(String key) |
Long |
incr(String key) |
Long |
incrBy(String key,
long integer) |
Double |
incrByFloat(String key,
double value) |
String |
lindex(String key,
long index) |
Long |
linsert(String key,
BinaryClient.LIST_POSITION where,
String pivot,
String value) |
Long |
llen(String key) |
String |
lpop(String key) |
Long |
lpush(String key,
String... string) |
Long |
lpushx(String key,
String... string) |
List<String> |
lrange(String key,
long start,
long end) |
Long |
lrem(String key,
long count,
String value) |
String |
lset(String key,
long index,
String value) |
String |
ltrim(String key,
long start,
long end) |
List<String> |
mget(String... keys) |
Long |
move(String key,
int dbIndex)
Deprecated.
Redis Cluster uses only db index 0, so it doesn't make sense. scheduled to be
removed on next major release
|
String |
mset(String... keysvalues) |
Long |
msetnx(String... keysvalues) |
Long |
persist(String key) |
Long |
pexpire(String key,
long milliseconds) |
Long |
pexpireAt(String key,
long millisecondsTimestamp) |
Long |
pfadd(String key,
String... elements) |
long |
pfcount(String... keys) |
long |
pfcount(String key) |
String |
pfmerge(String destkey,
String... sourcekeys) |
String |
psetex(String key,
long milliseconds,
String value) |
void |
psubscribe(JedisPubSub jedisPubSub,
String... patterns) |
Long |
pttl(String key) |
Long |
publish(String channel,
String message) |
String |
rename(String oldkey,
String newkey) |
Long |
renamenx(String oldkey,
String newkey) |
String |
rpop(String key) |
String |
rpoplpush(String srckey,
String dstkey) |
Long |
rpush(String key,
String... string) |
Long |
rpushx(String key,
String... string) |
Long |
sadd(String key,
String... member) |
Long |
scard(String key) |
List<Boolean> |
scriptExists(String key,
String... sha1) |
Boolean |
scriptExists(String sha1,
String key) |
String |
scriptLoad(String script,
String key) |
Set<String> |
sdiff(String... keys) |
Long |
sdiffstore(String dstkey,
String... keys) |
String |
set(String key,
String value) |
String |
set(String key,
String value,
String nxxx)
Deprecated.
SetParams is scheduled to be introduced at next major release Please use setnx
instead for now
|
String |
set(String key,
String value,
String nxxx,
String expx,
long time) |
Boolean |
setbit(String key,
long offset,
boolean value) |
Boolean |
setbit(String key,
long offset,
String value) |
String |
setex(String key,
int seconds,
String value) |
Long |
setnx(String key,
String value) |
Long |
setrange(String key,
long offset,
String value) |
Set<String> |
sinter(String... keys) |
Long |
sinterstore(String dstkey,
String... keys) |
Boolean |
sismember(String key,
String member) |
Set<String> |
smembers(String key) |
Long |
smove(String srckey,
String dstkey,
String member) |
List<String> |
sort(String key) |
List<String> |
sort(String key,
SortingParams sortingParameters) |
Long |
sort(String key,
SortingParams sortingParameters,
String dstkey) |
Long |
sort(String key,
String dstkey) |
String |
spop(String key) |
Set<String> |
spop(String key,
long count) |
String |
srandmember(String key) |
List<String> |
srandmember(String key,
int count) |
Long |
srem(String key,
String... member) |
ScanResult<String> |
sscan(String key,
int cursor)
Deprecated.
|
ScanResult<String> |
sscan(String key,
String cursor) |
ScanResult<String> |
sscan(String key,
String cursor,
ScanParams params) |
Long |
strlen(String key) |
void |
subscribe(JedisPubSub jedisPubSub,
String... channels) |
String |
substr(String key,
int start,
int end) |
Set<String> |
sunion(String... keys) |
Long |
sunionstore(String dstkey,
String... keys) |
Long |
ttl(String key) |
String |
type(String key) |
Long |
zadd(String key,
double score,
String member) |
Long |
zadd(String key,
double score,
String member,
ZAddParams params) |
Long |
zadd(String key,
Map<String,Double> scoreMembers) |
Long |
zadd(String key,
Map<String,Double> scoreMembers,
ZAddParams params) |
Long |
zcard(String key) |
Long |
zcount(String key,
double min,
double max) |
Long |
zcount(String key,
String min,
String max) |
Double |
zincrby(String key,
double score,
String member) |
Double |
zincrby(String key,
double score,
String member,
ZIncrByParams params) |
Long |
zinterstore(String dstkey,
String... sets) |
Long |
zinterstore(String dstkey,
ZParams params,
String... sets) |
Long |
zlexcount(String key,
String min,
String max) |
Set<String> |
zrange(String key,
long start,
long end) |
Set<String> |
zrangeByLex(String key,
String min,
String max) |
Set<String> |
zrangeByLex(String key,
String min,
String max,
int offset,
int count) |
Set<String> |
zrangeByScore(String key,
double min,
double max) |
Set<String> |
zrangeByScore(String key,
double min,
double max,
int offset,
int count) |
Set<String> |
zrangeByScore(String key,
String min,
String max) |
Set<String> |
zrangeByScore(String key,
String min,
String max,
int offset,
int count) |
Set<Tuple> |
zrangeByScoreWithScores(String key,
double min,
double max) |
Set<Tuple> |
zrangeByScoreWithScores(String key,
double min,
double max,
int offset,
int count) |
Set<Tuple> |
zrangeByScoreWithScores(String key,
String min,
String max) |
Set<Tuple> |
zrangeByScoreWithScores(String key,
String min,
String max,
int offset,
int count) |
Set<Tuple> |
zrangeWithScores(String key,
long start,
long end) |
Long |
zrank(String key,
String member) |
Long |
zrem(String key,
String... member) |
Long |
zremrangeByLex(String key,
String min,
String max) |
Long |
zremrangeByRank(String key,
long start,
long end) |
Long |
zremrangeByScore(String key,
double start,
double end) |
Long |
zremrangeByScore(String key,
String start,
String end) |
Set<String> |
zrevrange(String key,
long start,
long end) |
Set<String> |
zrevrangeByLex(String key,
String max,
String min) |
Set<String> |
zrevrangeByLex(String key,
String max,
String min,
int offset,
int count) |
Set<String> |
zrevrangeByScore(String key,
double max,
double min) |
Set<String> |
zrevrangeByScore(String key,
double max,
double min,
int offset,
int count) |
Set<String> |
zrevrangeByScore(String key,
String max,
String min) |
Set<String> |
zrevrangeByScore(String key,
String max,
String min,
int offset,
int count) |
Set<Tuple> |
zrevrangeByScoreWithScores(String key,
double max,
double min) |
Set<Tuple> |
zrevrangeByScoreWithScores(String key,
double max,
double min,
int offset,
int count) |
Set<Tuple> |
zrevrangeByScoreWithScores(String key,
String max,
String min) |
Set<Tuple> |
zrevrangeByScoreWithScores(String key,
String max,
String min,
int offset,
int count) |
Set<Tuple> |
zrevrangeWithScores(String key,
long start,
long end) |
Long |
zrevrank(String key,
String member) |
ScanResult<Tuple> |
zscan(String key,
int cursor)
Deprecated.
|
ScanResult<Tuple> |
zscan(String key,
String cursor) |
ScanResult<Tuple> |
zscan(String key,
String cursor,
ScanParams params) |
Double |
zscore(String key,
String member) |
Long |
zunionstore(String dstkey,
String... sets) |
Long |
zunionstore(String dstkey,
ZParams params,
String... sets) |
append, auth, bgrewriteaof, bgsave, bitcount, bitcount, bitop, blpop, brpop, brpoplpush, close, configResetStat, dbSize, debug, decr, decrBy, del, del, echo, eval, eval, eval, eval, evalsha, evalsha, evalsha, exists, exists, expire, expireAt, flushAll, flushDB, geoadd, geoadd, geodist, geodist, geohash, geopos, georadius, georadius, georadiusByMember, georadiusByMember, get, getbit, getClusterNodes, getDB, getrange, getSet, hdel, hexists, hget, hgetAll, hincrBy, hincrByFloat, hkeys, hlen, hmget, hmset, hscan, hscan, hset, hsetnx, hvals, incr, incrBy, incrByFloat, info, info, lastsave, lindex, linsert, llen, lpop, lpush, lpushx, lrange, lrem, lset, ltrim, mget, mset, msetnx, persist, pexpire, pexpireAt, pfadd, pfcount, pfcount, pfmerge, ping, psubscribe, publish, quit, rename, renamenx, rpop, rpoplpush, rpush, rpushx, sadd, save, scard, scriptExists, scriptFlush, scriptKill, scriptLoad, sdiff, sdiffstore, select, set, set, setbit, setbit, setex, setnx, setrange, shutdown, sinter, sinterstore, sismember, slaveof, slaveofNoOne, smembers, smove, sort, sort, sort, sort, spop, spop, srandmember, srandmember, srem, sscan, sscan, strlen, subscribe, substr, sunion, sunionstore, ttl, type, waitReplicas, zadd, zadd, zadd, zadd, zcard, zcount, zcount, zincrby, zincrby, zinterstore, zinterstore, zlexcount, zrange, zrangeByLex, zrangeByLex, zrangeByScore, zrangeByScore, zrangeByScore, zrangeByScore, zrangeByScoreWithScores, zrangeByScoreWithScores, zrangeByScoreWithScores, zrangeByScoreWithScores, zrangeWithScores, zrank, zrem, zremrangeByLex, zremrangeByRank, zremrangeByScore, zremrangeByScore, zrevrange, zrevrangeByLex, zrevrangeByLex, zrevrangeByScore, zrevrangeByScore, zrevrangeByScore, zrevrangeByScore, zrevrangeByScoreWithScores, zrevrangeByScoreWithScores, zrevrangeByScoreWithScores, zrevrangeByScoreWithScores, zrevrangeWithScores, zrevrank, zscan, zscan, zscore, zunionstore, zunionstorepublic JedisCluster(HostAndPort node)
public JedisCluster(HostAndPort node, int timeout)
public JedisCluster(HostAndPort node, int timeout, int maxRedirections)
public JedisCluster(HostAndPort node, org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig)
public JedisCluster(HostAndPort node, int timeout, org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig)
public JedisCluster(HostAndPort node, int timeout, int maxRedirections, org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig)
public JedisCluster(HostAndPort node, int connectionTimeout, int soTimeout, int maxRedirections, org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig)
public JedisCluster(Set<HostAndPort> nodes)
public JedisCluster(Set<HostAndPort> nodes, int timeout)
public JedisCluster(Set<HostAndPort> nodes, int timeout, int maxRedirections)
public JedisCluster(Set<HostAndPort> nodes, org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig)
public JedisCluster(Set<HostAndPort> nodes, int timeout, org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig)
public JedisCluster(Set<HostAndPort> jedisClusterNode, int timeout, int maxRedirections, org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig)
public JedisCluster(Set<HostAndPort> jedisClusterNode, int connectionTimeout, int soTimeout, int maxRedirections, org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig)
public String set(String key, String value)
set in interface JedisCommandspublic String set(String key, String value, String nxxx, String expx, long time)
set in interface JedisCommandspublic String get(String key)
get in interface JedisCommandspublic Boolean exists(String key)
exists in interface JedisCommandspublic Long exists(String... keys)
exists in interface MultiKeyJedisClusterCommandspublic Long persist(String key)
persist in interface JedisCommandspublic String type(String key)
type in interface JedisCommandspublic Long expire(String key, int seconds)
expire in interface JedisCommandspublic Long pexpire(String key, long milliseconds)
pexpire in interface JedisCommandspublic Long expireAt(String key, long unixTime)
expireAt in interface JedisCommandspublic Long pexpireAt(String key, long millisecondsTimestamp)
pexpireAt in interface JedisCommandspublic Long ttl(String key)
ttl in interface JedisCommandspublic Long pttl(String key)
pttl in interface JedisCommandspublic Boolean setbit(String key, long offset, boolean value)
setbit in interface JedisCommandspublic Boolean setbit(String key, long offset, String value)
setbit in interface JedisCommandspublic Boolean getbit(String key, long offset)
getbit in interface JedisCommandspublic Long setrange(String key, long offset, String value)
setrange in interface JedisCommandspublic String getrange(String key, long startOffset, long endOffset)
getrange in interface JedisCommandspublic String getSet(String key, String value)
getSet in interface JedisCommandspublic Long setnx(String key, String value)
setnx in interface JedisCommandspublic String setex(String key, int seconds, String value)
setex in interface JedisCommandspublic String psetex(String key, long milliseconds, String value)
psetex in interface JedisCommandspublic Long decrBy(String key, long integer)
decrBy in interface JedisCommandspublic Long decr(String key)
decr in interface JedisCommandspublic Long incrBy(String key, long integer)
incrBy in interface JedisCommandspublic Double incrByFloat(String key, double value)
incrByFloat in interface JedisCommandspublic Long incr(String key)
incr in interface JedisCommandspublic Long append(String key, String value)
append in interface JedisCommandspublic String substr(String key, int start, int end)
substr in interface JedisCommandspublic Long hset(String key, String field, String value)
hset in interface JedisCommandspublic String hget(String key, String field)
hget in interface JedisCommandspublic Long hsetnx(String key, String field, String value)
hsetnx in interface JedisCommandspublic String hmset(String key, Map<String,String> hash)
hmset in interface JedisCommandspublic List<String> hmget(String key, String... fields)
hmget in interface JedisCommandspublic Long hincrBy(String key, String field, long value)
hincrBy in interface JedisCommandspublic Double hincrByFloat(String key, String field, double value)
hincrByFloat in interface JedisCommandspublic Boolean hexists(String key, String field)
hexists in interface JedisCommandspublic Long hdel(String key, String... field)
hdel in interface JedisCommandspublic Long hlen(String key)
hlen in interface JedisCommandspublic Set<String> hkeys(String key)
hkeys in interface JedisCommandspublic List<String> hvals(String key)
hvals in interface JedisCommandspublic Map<String,String> hgetAll(String key)
hgetAll in interface JedisCommandspublic Long rpush(String key, String... string)
rpush in interface JedisCommandspublic Long lpush(String key, String... string)
lpush in interface JedisCommandspublic Long llen(String key)
llen in interface JedisCommandspublic List<String> lrange(String key, long start, long end)
lrange in interface JedisCommandspublic String ltrim(String key, long start, long end)
ltrim in interface JedisCommandspublic String lindex(String key, long index)
lindex in interface JedisCommandspublic String lset(String key, long index, String value)
lset in interface JedisCommandspublic Long lrem(String key, long count, String value)
lrem in interface JedisCommandspublic String lpop(String key)
lpop in interface JedisCommandspublic String rpop(String key)
rpop in interface JedisCommandspublic Long sadd(String key, String... member)
sadd in interface JedisCommandspublic Set<String> smembers(String key)
smembers in interface JedisCommandspublic Long srem(String key, String... member)
srem in interface JedisCommandspublic String spop(String key)
spop in interface JedisCommandspublic Set<String> spop(String key, long count)
spop in interface JedisCommandspublic Long scard(String key)
scard in interface JedisCommandspublic Boolean sismember(String key, String member)
sismember in interface JedisCommandspublic String srandmember(String key)
srandmember in interface JedisCommandspublic List<String> srandmember(String key, int count)
srandmember in interface JedisCommandspublic Long strlen(String key)
strlen in interface JedisCommandspublic Long zadd(String key, double score, String member)
zadd in interface JedisCommandspublic Long zadd(String key, double score, String member, ZAddParams params)
zadd in interface JedisCommandspublic Long zadd(String key, Map<String,Double> scoreMembers)
zadd in interface JedisCommandspublic Long zadd(String key, Map<String,Double> scoreMembers, ZAddParams params)
zadd in interface JedisCommandspublic Set<String> zrange(String key, long start, long end)
zrange in interface JedisCommandspublic Long zrem(String key, String... member)
zrem in interface JedisCommandspublic Double zincrby(String key, double score, String member)
zincrby in interface JedisCommandspublic Double zincrby(String key, double score, String member, ZIncrByParams params)
zincrby in interface JedisCommandspublic Long zrank(String key, String member)
zrank in interface JedisCommandspublic Long zrevrank(String key, String member)
zrevrank in interface JedisCommandspublic Set<String> zrevrange(String key, long start, long end)
zrevrange in interface JedisCommandspublic Set<Tuple> zrangeWithScores(String key, long start, long end)
zrangeWithScores in interface JedisCommandspublic Set<Tuple> zrevrangeWithScores(String key, long start, long end)
zrevrangeWithScores in interface JedisCommandspublic Long zcard(String key)
zcard in interface JedisCommandspublic Double zscore(String key, String member)
zscore in interface JedisCommandspublic List<String> sort(String key)
sort in interface JedisCommandspublic List<String> sort(String key, SortingParams sortingParameters)
sort in interface JedisCommandspublic Long zcount(String key, double min, double max)
zcount in interface JedisCommandspublic Long zcount(String key, String min, String max)
zcount in interface JedisCommandspublic Set<String> zrangeByScore(String key, double min, double max)
zrangeByScore in interface JedisCommandspublic Set<String> zrangeByScore(String key, String min, String max)
zrangeByScore in interface JedisCommandspublic Set<String> zrevrangeByScore(String key, double max, double min)
zrevrangeByScore in interface JedisCommandspublic Set<String> zrangeByScore(String key, double min, double max, int offset, int count)
zrangeByScore in interface JedisCommandspublic Set<String> zrevrangeByScore(String key, String max, String min)
zrevrangeByScore in interface JedisCommandspublic Set<String> zrangeByScore(String key, String min, String max, int offset, int count)
zrangeByScore in interface JedisCommandspublic Set<String> zrevrangeByScore(String key, double max, double min, int offset, int count)
zrevrangeByScore in interface JedisCommandspublic Set<Tuple> zrangeByScoreWithScores(String key, double min, double max)
zrangeByScoreWithScores in interface JedisCommandspublic Set<Tuple> zrevrangeByScoreWithScores(String key, double max, double min)
zrevrangeByScoreWithScores in interface JedisCommandspublic Set<Tuple> zrangeByScoreWithScores(String key, double min, double max, int offset, int count)
zrangeByScoreWithScores in interface JedisCommandspublic Set<String> zrevrangeByScore(String key, String max, String min, int offset, int count)
zrevrangeByScore in interface JedisCommandspublic Set<Tuple> zrangeByScoreWithScores(String key, String min, String max)
zrangeByScoreWithScores in interface JedisCommandspublic Set<Tuple> zrevrangeByScoreWithScores(String key, String max, String min)
zrevrangeByScoreWithScores in interface JedisCommandspublic Set<Tuple> zrangeByScoreWithScores(String key, String min, String max, int offset, int count)
zrangeByScoreWithScores in interface JedisCommandspublic Set<Tuple> zrevrangeByScoreWithScores(String key, double max, double min, int offset, int count)
zrevrangeByScoreWithScores in interface JedisCommandspublic Set<Tuple> zrevrangeByScoreWithScores(String key, String max, String min, int offset, int count)
zrevrangeByScoreWithScores in interface JedisCommandspublic Long zremrangeByRank(String key, long start, long end)
zremrangeByRank in interface JedisCommandspublic Long zremrangeByScore(String key, double start, double end)
zremrangeByScore in interface JedisCommandspublic Long zremrangeByScore(String key, String start, String end)
zremrangeByScore in interface JedisCommandspublic Long zlexcount(String key, String min, String max)
zlexcount in interface JedisCommandspublic Set<String> zrangeByLex(String key, String min, String max)
zrangeByLex in interface JedisCommandspublic Set<String> zrangeByLex(String key, String min, String max, int offset, int count)
zrangeByLex in interface JedisCommandspublic Set<String> zrevrangeByLex(String key, String max, String min)
zrevrangeByLex in interface JedisCommandspublic Set<String> zrevrangeByLex(String key, String max, String min, int offset, int count)
zrevrangeByLex in interface JedisCommandspublic Long zremrangeByLex(String key, String min, String max)
zremrangeByLex in interface JedisCommandspublic Long linsert(String key, BinaryClient.LIST_POSITION where, String pivot, String value)
linsert in interface JedisCommandspublic Long lpushx(String key, String... string)
lpushx in interface JedisCommandspublic Long rpushx(String key, String... string)
rpushx in interface JedisCommandspublic Long del(String key)
del in interface JedisCommandspublic String echo(String string)
echo in interface JedisCommandspublic Long bitcount(String key)
bitcount in interface JedisCommandspublic Long bitcount(String key, long start, long end)
bitcount in interface JedisCommandspublic Long bitpos(String key, boolean value)
bitpos in interface JedisCommandspublic Long bitpos(String key, boolean value, BitPosParams params)
bitpos in interface JedisCommandspublic ScanResult<Map.Entry<String,String>> hscan(String key, String cursor)
hscan in interface JedisCommandspublic ScanResult<Map.Entry<String,String>> hscan(String key, String cursor, ScanParams params)
hscan in interface JedisCommandspublic ScanResult<String> sscan(String key, String cursor)
sscan in interface JedisCommandspublic ScanResult<String> sscan(String key, String cursor, ScanParams params)
sscan in interface JedisCommandspublic ScanResult<Tuple> zscan(String key, String cursor)
zscan in interface JedisCommandspublic ScanResult<Tuple> zscan(String key, String cursor, ScanParams params)
zscan in interface JedisCommandspublic Long pfadd(String key, String... elements)
pfadd in interface JedisCommandspublic long pfcount(String key)
pfcount in interface JedisCommandspublic List<String> blpop(int timeout, String key)
blpop in interface JedisCommandspublic List<String> brpop(int timeout, String key)
brpop in interface JedisCommandspublic Long del(String... keys)
del in interface MultiKeyJedisClusterCommandspublic List<String> blpop(int timeout, String... keys)
blpop in interface MultiKeyJedisClusterCommandspublic List<String> brpop(int timeout, String... keys)
brpop in interface MultiKeyJedisClusterCommandspublic List<String> mget(String... keys)
mget in interface MultiKeyJedisClusterCommandspublic String mset(String... keysvalues)
mset in interface MultiKeyJedisClusterCommandspublic Long msetnx(String... keysvalues)
msetnx in interface MultiKeyJedisClusterCommandspublic String rename(String oldkey, String newkey)
rename in interface MultiKeyJedisClusterCommandspublic Long renamenx(String oldkey, String newkey)
renamenx in interface MultiKeyJedisClusterCommandspublic String rpoplpush(String srckey, String dstkey)
rpoplpush in interface MultiKeyJedisClusterCommandspublic Set<String> sdiff(String... keys)
sdiff in interface MultiKeyJedisClusterCommandspublic Long sdiffstore(String dstkey, String... keys)
sdiffstore in interface MultiKeyJedisClusterCommandspublic Set<String> sinter(String... keys)
sinter in interface MultiKeyJedisClusterCommandspublic Long sinterstore(String dstkey, String... keys)
sinterstore in interface MultiKeyJedisClusterCommandspublic Long smove(String srckey, String dstkey, String member)
smove in interface MultiKeyJedisClusterCommandspublic Long sort(String key, SortingParams sortingParameters, String dstkey)
sort in interface MultiKeyJedisClusterCommandspublic Long sort(String key, String dstkey)
sort in interface MultiKeyJedisClusterCommandspublic Set<String> sunion(String... keys)
sunion in interface MultiKeyJedisClusterCommandspublic Long sunionstore(String dstkey, String... keys)
sunionstore in interface MultiKeyJedisClusterCommandspublic Long zinterstore(String dstkey, String... sets)
zinterstore in interface MultiKeyJedisClusterCommandspublic Long zinterstore(String dstkey, ZParams params, String... sets)
zinterstore in interface MultiKeyJedisClusterCommandspublic Long zunionstore(String dstkey, String... sets)
zunionstore in interface MultiKeyJedisClusterCommandspublic Long zunionstore(String dstkey, ZParams params, String... sets)
zunionstore in interface MultiKeyJedisClusterCommandspublic String brpoplpush(String source, String destination, int timeout)
brpoplpush in interface MultiKeyJedisClusterCommandspublic Long publish(String channel, String message)
publish in interface MultiKeyJedisClusterCommandspublic void subscribe(JedisPubSub jedisPubSub, String... channels)
subscribe in interface MultiKeyJedisClusterCommandspublic void psubscribe(JedisPubSub jedisPubSub, String... patterns)
psubscribe in interface MultiKeyJedisClusterCommandspublic Long bitop(BitOP op, String destKey, String... srcKeys)
bitop in interface MultiKeyJedisClusterCommandspublic String pfmerge(String destkey, String... sourcekeys)
pfmerge in interface MultiKeyJedisClusterCommandspublic long pfcount(String... keys)
pfcount in interface MultiKeyJedisClusterCommandspublic Object eval(String script, int keyCount, String... params)
eval in interface JedisClusterScriptingCommandspublic Object eval(String script, String key)
eval in interface JedisClusterScriptingCommandspublic Object eval(String script, List<String> keys, List<String> args)
eval in interface JedisClusterScriptingCommandspublic Object evalsha(String sha1, int keyCount, String... params)
evalsha in interface JedisClusterScriptingCommandspublic Object evalsha(String sha1, List<String> keys, List<String> args)
evalsha in interface JedisClusterScriptingCommandspublic Object evalsha(String script, String key)
evalsha in interface JedisClusterScriptingCommandspublic Boolean scriptExists(String sha1, String key)
scriptExists in interface JedisClusterScriptingCommandspublic List<Boolean> scriptExists(String key, String... sha1)
scriptExists in interface JedisClusterScriptingCommandspublic String scriptLoad(String script, String key)
scriptLoad in interface JedisClusterScriptingCommands@Deprecated public String set(String key, String value, String nxxx)
set in interface JedisCommands@Deprecated public List<String> blpop(String arg)
blpop in interface JedisCommands@Deprecated public List<String> brpop(String arg)
brpop in interface JedisCommands@Deprecated public Long move(String key, int dbIndex)
move in interface JedisCommands@Deprecated public ScanResult<Map.Entry<String,String>> hscan(String key, int cursor)
hscan in interface JedisCommands@Deprecated public ScanResult<String> sscan(String key, int cursor)
sscan in interface JedisCommands@Deprecated public ScanResult<Tuple> zscan(String key, int cursor)
zscan in interface JedisCommandspublic Long geoadd(String key, double longitude, double latitude, String member)
geoadd in interface JedisCommandspublic Long geoadd(String key, Map<String,GeoCoordinate> memberCoordinateMap)
geoadd in interface JedisCommandspublic Double geodist(String key, String member1, String member2)
geodist in interface JedisCommandspublic Double geodist(String key, String member1, String member2, GeoUnit unit)
geodist in interface JedisCommandspublic List<String> geohash(String key, String... members)
geohash in interface JedisCommandspublic List<GeoCoordinate> geopos(String key, String... members)
geopos in interface JedisCommandspublic List<GeoRadiusResponse> georadius(String key, double longitude, double latitude, double radius, GeoUnit unit)
georadius in interface JedisCommandspublic List<GeoRadiusResponse> georadius(String key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)
georadius in interface JedisCommandspublic List<GeoRadiusResponse> georadiusByMember(String key, String member, double radius, GeoUnit unit)
georadiusByMember in interface JedisCommandspublic List<GeoRadiusResponse> georadiusByMember(String key, String member, double radius, GeoUnit unit, GeoRadiusParam param)
georadiusByMember in interface JedisCommandsCopyright © 2016. All rights reserved.