public abstract class MultiKeyPipelineBase extends PipelineBase implements MultiKeyBinaryRedisPipeline, MultiKeyCommandsPipeline, ClusterPipeline, BinaryScriptingCommandsPipeline, ScriptingCommandsPipeline, BasicRedisPipeline
| Constructor and Description |
|---|
MultiKeyPipelineBase() |
| Modifier and Type | Method and Description |
|---|---|
Response<String> |
bgrewriteaof() |
Response<String> |
bgsave() |
Response<Long> |
bitop(BitOP op,
byte[] destKey,
byte[]... srcKeys) |
Response<Long> |
bitop(BitOP op,
String destKey,
String... srcKeys) |
Response<byte[]> |
blmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout) |
Response<String> |
blmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to,
double timeout) |
Response<List<byte[]>> |
blpop(byte[]... args) |
Response<List<byte[]>> |
blpop(double timeout,
byte[]... keys) |
Response<KeyedListElement> |
blpop(double timeout,
String... keys) |
Response<List<String>> |
blpop(int timeout,
byte[]... keys)
Deprecated.
|
Response<List<String>> |
blpop(int timeout,
String... keys) |
Response<List<String>> |
blpop(String... args) |
Response<Map<String,String>> |
blpopMap(int timeout,
String... keys)
Deprecated.
|
Response<List<byte[]>> |
brpop(byte[]... args) |
Response<List<byte[]>> |
brpop(double timeout,
byte[]... keys) |
Response<KeyedListElement> |
brpop(double timeout,
String... keys) |
Response<List<String>> |
brpop(int timeout,
byte[]... keys)
Deprecated.
|
Response<List<String>> |
brpop(int timeout,
String... keys) |
Response<List<String>> |
brpop(String... args) |
Response<byte[]> |
brpoplpush(byte[] source,
byte[] destination,
int timeout) |
Response<String> |
brpoplpush(String source,
String destination,
int timeout) |
Response<Map<String,String>> |
brpopMap(int timeout,
String... keys)
Deprecated.
|
Response<List<byte[]>> |
bzpopmax(double timeout,
byte[]... keys) |
Response<KeyedZSetElement> |
bzpopmax(double timeout,
String... keys) |
Response<List<byte[]>> |
bzpopmin(double timeout,
byte[]... keys) |
Response<KeyedZSetElement> |
bzpopmin(double timeout,
String... keys) |
Response<String> |
clusterAddSlots(int... slots) |
Response<String> |
clusterDelSlots(int... slots) |
Response<List<String>> |
clusterGetKeysInSlot(int slot,
int count) |
Response<String> |
clusterInfo() |
Response<String> |
clusterMeet(String ip,
int port) |
Response<String> |
clusterNodes() |
Response<String> |
clusterSetSlotImporting(int slot,
String nodeId) |
Response<String> |
clusterSetSlotMigrating(int slot,
String nodeId) |
Response<String> |
clusterSetSlotNode(int slot,
String nodeId) |
Response<List<String>> |
configGet(String pattern) |
Response<String> |
configResetStat() |
Response<String> |
configSet(String parameter,
String value) |
Response<Boolean> |
copy(byte[] srcKey,
byte[] dstKey,
boolean replace) |
Response<Boolean> |
copy(byte[] srcKey,
byte[] dstKey,
int db,
boolean replace) |
Response<Boolean> |
copy(String srcKey,
String dstKey,
boolean replace) |
Response<Boolean> |
copy(String srcKey,
String dstKey,
int db,
boolean replace) |
Response<Long> |
dbSize() |
Response<Long> |
del(byte[]... keys) |
Response<Long> |
del(String... keys) |
Response<Object> |
eval(byte[] script) |
Response<Object> |
eval(byte[] script,
byte[] keyCount,
byte[]... params) |
Response<Object> |
eval(byte[] script,
int keyCount,
byte[]... params) |
Response<Object> |
eval(byte[] script,
List<byte[]> keys,
List<byte[]> args) |
Response<Object> |
eval(String script) |
Response<Object> |
eval(String script,
int keyCount,
String... params) |
Response<Object> |
eval(String script,
List<String> keys,
List<String> args) |
Response<Object> |
evalsha(byte[] sha1) |
Response<Object> |
evalsha(byte[] sha1,
int keyCount,
byte[]... params) |
Response<Object> |
evalsha(byte[] sha1,
List<byte[]> keys,
List<byte[]> args) |
Response<Object> |
evalsha(String sha1) |
Response<Object> |
evalsha(String sha1,
int keyCount,
String... params) |
Response<Object> |
evalsha(String sha1,
List<String> keys,
List<String> args) |
Response<Long> |
exists(byte[]... keys) |
Response<Long> |
exists(String... keys) |
Response<String> |
flushAll() |
Response<String> |
flushAll(FlushMode flushMode) |
Response<String> |
flushDB() |
Response<String> |
flushDB(FlushMode flushMode) |
Response<Long> |
georadiusByMemberStore(byte[] key,
byte[] member,
double radius,
GeoUnit unit,
GeoRadiusParam param,
GeoRadiusStoreParam storeParam) |
Response<Long> |
georadiusByMemberStore(String key,
String member,
double radius,
GeoUnit unit,
GeoRadiusParam param,
GeoRadiusStoreParam storeParam) |
Response<Long> |
georadiusStore(byte[] key,
double longitude,
double latitude,
double radius,
GeoUnit unit,
GeoRadiusParam param,
GeoRadiusStoreParam storeParam) |
Response<Long> |
georadiusStore(String key,
double longitude,
double latitude,
double radius,
GeoUnit unit,
GeoRadiusParam param,
GeoRadiusStoreParam storeParam) |
Response<String> |
info() |
Response<String> |
info(String section) |
Response<Set<byte[]>> |
keys(byte[] pattern) |
Response<Set<String>> |
keys(String pattern) |
Response<Long> |
lastsave() |
Response<byte[]> |
lmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to) |
Response<String> |
lmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to) |
Response<List<byte[]>> |
mget(byte[]... keys) |
Response<List<String>> |
mget(String... keys) |
Response<String> |
migrate(String host,
int port,
int destinationDB,
int timeout,
MigrateParams params,
byte[]... keys) |
Response<String> |
migrate(String host,
int port,
int destinationDB,
int timeout,
MigrateParams params,
String... keys) |
Response<List<Module>> |
moduleList() |
Response<String> |
moduleLoad(String path) |
Response<String> |
moduleUnload(String name) |
Response<String> |
mset(byte[]... keysvalues) |
Response<String> |
mset(String... keysvalues) |
Response<Long> |
msetnx(byte[]... keysvalues) |
Response<Long> |
msetnx(String... keysvalues) |
Response<Long> |
pfcount(byte[]... keys) |
Response<Long> |
pfcount(String... keys) |
Response<String> |
pfmerge(byte[] destkey,
byte[]... sourcekeys) |
Response<String> |
pfmerge(String destkey,
String... sourcekeys) |
Response<String> |
ping() |
Response<Long> |
publish(byte[] channel,
byte[] message) |
Response<Long> |
publish(String channel,
String message) |
Response<String> |
randomKey() |
Response<byte[]> |
randomKeyBinary() |
Response<String> |
rename(byte[] oldkey,
byte[] newkey) |
Response<String> |
rename(String oldkey,
String newkey) |
Response<Long> |
renamenx(byte[] oldkey,
byte[] newkey) |
Response<Long> |
renamenx(String oldkey,
String newkey) |
Response<byte[]> |
rpoplpush(byte[] srckey,
byte[] dstkey) |
Response<String> |
rpoplpush(String srckey,
String dstkey) |
Response<String> |
save() |
Response<Set<byte[]>> |
sdiff(byte[]... keys) |
Response<Set<String>> |
sdiff(String... keys) |
Response<Long> |
sdiffstore(byte[] dstkey,
byte[]... keys) |
Response<Long> |
sdiffstore(String dstkey,
String... keys) |
Response<String> |
select(int index) |
Response<Object> |
sendCommand(ProtocolCommand cmd,
byte[]... args) |
Response<Object> |
sendCommand(ProtocolCommand cmd,
String... args) |
Response<String> |
shutdown() |
Response<Set<byte[]>> |
sinter(byte[]... keys) |
Response<Set<String>> |
sinter(String... keys) |
Response<Long> |
sinterstore(byte[] dstkey,
byte[]... keys) |
Response<Long> |
sinterstore(String dstkey,
String... keys) |
Response<Long> |
smove(byte[] srckey,
byte[] dstkey,
byte[] member) |
Response<Long> |
smove(String srckey,
String dstkey,
String member) |
Response<Long> |
sort(byte[] key,
byte[] dstkey) |
Response<Long> |
sort(byte[] key,
SortingParams sortingParameters,
byte[] dstkey) |
Response<Long> |
sort(String key,
SortingParams sortingParameters,
String dstkey) |
Response<Long> |
sort(String key,
String dstkey) |
Response<Set<byte[]>> |
sunion(byte[]... keys) |
Response<Set<String>> |
sunion(String... keys) |
Response<Long> |
sunionstore(byte[] dstkey,
byte[]... keys) |
Response<Long> |
sunionstore(String dstkey,
String... keys) |
Response<String> |
swapDB(int index1,
int index2) |
Response<List<String>> |
time() |
Response<Long> |
touch(byte[]... keys) |
Response<Long> |
touch(String... keys) |
Response<Long> |
unlink(byte[]... keys) |
Response<Long> |
unlink(String... keys) |
Response<String> |
unwatch() |
Response<String> |
watch(byte[]... keys) |
Response<String> |
watch(String... keys) |
Response<List<Map.Entry<String,List<StreamEntry>>>> |
xread(int count,
long block,
Map.Entry<String,StreamEntryID>... streams) |
Response<List<byte[]>> |
xread(int count,
long block,
Map<byte[],byte[]> streams) |
Response<List<byte[]>> |
xread(XReadParams xReadParams,
Map.Entry<byte[],byte[]>... streams) |
Response<List<Map.Entry<String,List<StreamEntry>>>> |
xread(XReadParams xReadParams,
Map<String,StreamEntryID> streams) |
Response<List<byte[]>> |
xreadGroup(byte[] groupname,
byte[] consumer,
int count,
long block,
boolean noAck,
Map<byte[],byte[]> streams) |
Response<List<byte[]>> |
xreadGroup(byte[] groupname,
byte[] consumer,
XReadGroupParams xReadGroupParams,
Map.Entry<byte[],byte[]>... streams) |
Response<List<Map.Entry<String,List<StreamEntry>>>> |
xreadGroup(String groupname,
String consumer,
int count,
long block,
boolean noAck,
Map.Entry<String,StreamEntryID>... streams) |
Response<List<Map.Entry<String,List<StreamEntry>>>> |
xreadGroup(String groupname,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams) |
Response<Set<byte[]>> |
zdiff(byte[]... keys) |
Response<Set<String>> |
zdiff(String... keys) |
Response<Long> |
zdiffStore(byte[] dstkey,
byte[]... keys) |
Response<Long> |
zdiffStore(String dstkey,
String... keys) |
Response<Set<Tuple>> |
zdiffWithScores(byte[]... keys) |
Response<Set<Tuple>> |
zdiffWithScores(String... keys) |
Response<Set<byte[]>> |
zinter(ZParams params,
byte[]... keys) |
Response<Set<String>> |
zinter(ZParams params,
String... keys) |
Response<Long> |
zinterstore(byte[] dstkey,
byte[]... sets) |
Response<Long> |
zinterstore(byte[] dstkey,
ZParams params,
byte[]... sets) |
Response<Long> |
zinterstore(String dstkey,
String... sets) |
Response<Long> |
zinterstore(String dstkey,
ZParams params,
String... sets) |
Response<Set<Tuple>> |
zinterWithScores(ZParams params,
byte[]... keys) |
Response<Set<Tuple>> |
zinterWithScores(ZParams params,
String... keys) |
Response<Set<byte[]>> |
zunion(ZParams params,
byte[]... keys) |
Response<Set<String>> |
zunion(ZParams params,
String... keys) |
Response<Long> |
zunionstore(byte[] dstkey,
byte[]... sets) |
Response<Long> |
zunionstore(byte[] dstkey,
ZParams params,
byte[]... sets) |
Response<Long> |
zunionstore(String dstkey,
String... sets) |
Response<Long> |
zunionstore(String dstkey,
ZParams params,
String... sets) |
Response<Set<Tuple>> |
zunionWithScores(ZParams params,
byte[]... keys) |
Response<Set<Tuple>> |
zunionWithScores(ZParams params,
String... keys) |
append, append, bitcount, bitcount, bitcount, bitcount, bitfield, bitfield, bitfieldReadonly, bitfieldReadonly, bitpos, bitpos, bitpos, bitpos, blpop, blpop, brpop, brpop, decr, decr, decrBy, decrBy, del, del, dump, dump, echo, echo, exists, exists, expire, expire, expireAt, expireAt, geoadd, geoadd, geoadd, geoadd, geoadd, geoadd, geodist, geodist, geodist, geodist, geohash, geohash, geopos, geopos, georadius, georadius, georadius, georadius, georadiusByMember, georadiusByMember, georadiusByMember, georadiusByMember, georadiusByMemberReadonly, georadiusByMemberReadonly, georadiusByMemberReadonly, georadiusByMemberReadonly, georadiusReadonly, georadiusReadonly, georadiusReadonly, georadiusReadonly, get, get, getbit, getbit, getClient, getClient, getDel, getDel, getEx, getEx, getrange, getrange, getSet, getSet, hdel, hdel, hexists, hexists, hget, hget, hgetAll, hgetAll, hincrBy, hincrBy, hincrByFloat, hincrByFloat, hkeys, hkeys, hlen, hlen, hmget, hmget, hmset, hmset, hrandfield, hrandfield, hrandfield, hrandfield, hrandfieldWithValues, hrandfieldWithValues, hset, hset, hset, hset, hsetnx, hsetnx, hstrlen, hstrlen, hvals, hvals, incr, incr, incrBy, incrBy, incrByFloat, incrByFloat, lindex, lindex, linsert, linsert, llen, llen, lpop, lpop, lpop, lpop, lpos, lpos, lpos, lpos, lpos, lpos, lpush, lpush, lpushx, lpushx, lrange, lrange, lrem, lrem, lset, lset, ltrim, ltrim, migrate, migrate, move, move, objectEncoding, objectEncoding, objectFreq, objectFreq, objectIdletime, objectIdletime, objectRefcount, objectRefcount, persist, persist, pexpire, pexpire, pexpireAt, pexpireAt, pfadd, pfadd, pfcount, pfcount, psetex, psetex, pttl, pttl, restore, restore, restore, restore, restoreReplace, restoreReplace, rpop, rpop, rpop, rpop, rpush, rpush, rpushx, rpushx, sadd, sadd, scard, scard, sendCommand, sendCommand, set, set, set, set, setbit, setbit, setex, setex, setnx, setnx, setrange, setrange, sismember, sismember, smembers, smembers, smismember, smismember, sort, sort, sort, sort, spop, spop, spop, spop, srandmember, srandmember, srandmember, srandmember, srem, srem, strlen, strlen, substr, substr, touch, touch, ttl, ttl, type, type, unlink, unlink, xack, xack, xadd, xadd, xadd, xadd, xadd, xadd, xclaim, xclaim, xclaim, xclaim, xclaimJustId, xclaimJustId, xdel, xdel, xgroupCreate, xgroupCreate, xgroupDelConsumer, xgroupDelConsumer, xgroupDestroy, xgroupDestroy, xgroupSetID, xgroupSetID, xlen, xlen, xpending, xpending, xpending, xpending, xpending, xpending, xpendingBinary, xrange, xrange, xrange, xrange, xrevrange, xrevrange, xrevrange, xrevrange, xtrim, xtrim, xtrim, xtrim, zadd, zadd, zadd, zadd, zadd, zadd, zadd, zadd, zaddIncr, zaddIncr, zcard, zcard, zcount, zcount, zcount, zcount, zincrby, zincrby, zincrby, zincrby, zlexcount, zlexcount, zmscore, zmscore, zpopmax, zpopmax, zpopmax, zpopmax, zpopmin, zpopmin, zpopmin, zpopmin, zrandmember, zrandmember, zrandmember, zrandmember, zrandmemberWithScores, zrandmemberWithScores, zrange, zrange, zrangeByLex, zrangeByLex, zrangeByLex, zrangeByLex, zrangeByScore, zrangeByScore, zrangeByScore, zrangeByScore, zrangeByScore, zrangeByScore, zrangeByScore, zrangeByScore, zrangeByScoreWithScores, zrangeByScoreWithScores, zrangeByScoreWithScores, zrangeByScoreWithScores, zrangeByScoreWithScores, zrangeByScoreWithScores, zrangeByScoreWithScores, zrangeByScoreWithScores, zrangeWithScores, zrangeWithScores, zrank, zrank, zrem, zrem, zremrangeByLex, zremrangeByLex, zremrangeByRank, zremrangeByRank, zremrangeByScore, zremrangeByScore, zremrangeByScore, zremrangeByScore, zrevrange, zrevrange, zrevrangeByLex, zrevrangeByLex, zrevrangeByLex, zrevrangeByLex, zrevrangeByScore, zrevrangeByScore, zrevrangeByScore, zrevrangeByScore, zrevrangeByScore, zrevrangeByScore, zrevrangeByScore, zrevrangeByScore, zrevrangeByScoreWithScores, zrevrangeByScoreWithScores, zrevrangeByScoreWithScores, zrevrangeByScoreWithScores, zrevrangeByScoreWithScores, zrevrangeByScoreWithScores, zrevrangeByScoreWithScores, zrevrangeByScoreWithScores, zrevrangeWithScores, zrevrangeWithScores, zrevrank, zrevrank, zscore, zscoreclean, generateResponse, getPipelinedResponseLength, getResponse, hasPipelinedResponseclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitmigrateexpire, restore, restoreReplace, setexexpire, restore, restoreReplace, setexprotected Client client
public Response<Boolean> copy(byte[] srcKey, byte[] dstKey, int db, boolean replace)
copy in interface MultiKeyBinaryRedisPipelinepublic Response<Boolean> copy(byte[] srcKey, byte[] dstKey, boolean replace)
copy in interface MultiKeyBinaryRedisPipelinepublic Response<Boolean> copy(String srcKey, String dstKey, int db, boolean replace)
copy in interface MultiKeyCommandsPipelinepublic Response<Boolean> copy(String srcKey, String dstKey, boolean replace)
copy in interface MultiKeyCommandsPipelinepublic Response<String> lmove(String srcKey, String dstKey, ListDirection from, ListDirection to)
lmove in interface MultiKeyCommandsPipelinepublic Response<byte[]> lmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to)
lmove in interface MultiKeyBinaryRedisPipelinepublic Response<String> blmove(String srcKey, String dstKey, ListDirection from, ListDirection to, double timeout)
blmove in interface MultiKeyCommandsPipelinepublic Response<byte[]> blmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to, double timeout)
blmove in interface MultiKeyBinaryRedisPipelinepublic Response<List<String>> blpop(String... args)
blpop in interface MultiKeyCommandsPipelinepublic Response<List<byte[]>> blpop(byte[]... args)
blpop in interface MultiKeyBinaryRedisPipelinepublic Response<List<String>> blpop(int timeout, String... keys)
blpop in interface MultiKeyCommandsPipeline@Deprecated public Response<Map<String,String>> blpopMap(int timeout, String... keys)
blpop(double, java.lang.String...) or
blpop(int, java.lang.String...).@Deprecated public Response<List<String>> blpop(int timeout, byte[]... keys)
public Response<KeyedListElement> blpop(double timeout, String... keys)
blpop in interface MultiKeyCommandsPipelinepublic Response<List<byte[]>> blpop(double timeout, byte[]... keys)
blpop in interface MultiKeyBinaryRedisPipelinepublic Response<List<String>> brpop(String... args)
brpop in interface MultiKeyCommandsPipelinepublic Response<List<byte[]>> brpop(byte[]... args)
brpop in interface MultiKeyBinaryRedisPipelinepublic Response<List<String>> brpop(int timeout, String... keys)
brpop in interface MultiKeyCommandsPipeline@Deprecated public Response<Map<String,String>> brpopMap(int timeout, String... keys)
brpop(double, java.lang.String...) or
brpop(int, java.lang.String...).@Deprecated public Response<List<String>> brpop(int timeout, byte[]... keys)
public Response<KeyedListElement> brpop(double timeout, String... keys)
brpop in interface MultiKeyCommandsPipelinepublic Response<List<byte[]>> brpop(double timeout, byte[]... keys)
brpop in interface MultiKeyBinaryRedisPipelinepublic Response<KeyedZSetElement> bzpopmax(double timeout, String... keys)
bzpopmax in interface MultiKeyCommandsPipelinepublic Response<List<byte[]>> bzpopmax(double timeout, byte[]... keys)
bzpopmax in interface MultiKeyBinaryRedisPipelinepublic Response<KeyedZSetElement> bzpopmin(double timeout, String... keys)
bzpopmin in interface MultiKeyCommandsPipelinepublic Response<List<byte[]>> bzpopmin(double timeout, byte[]... keys)
bzpopmin in interface MultiKeyBinaryRedisPipelinepublic Response<Long> del(String... keys)
del in interface MultiKeyCommandsPipelinepublic Response<Long> del(byte[]... keys)
del in interface MultiKeyBinaryRedisPipelinepublic Response<Long> unlink(String... keys)
unlink in interface MultiKeyCommandsPipelinepublic Response<Long> unlink(byte[]... keys)
unlink in interface MultiKeyBinaryRedisPipelinepublic Response<Long> exists(String... keys)
exists in interface MultiKeyCommandsPipelinepublic Response<Long> exists(byte[]... keys)
exists in interface MultiKeyBinaryRedisPipelinepublic Response<Set<String>> keys(String pattern)
keys in interface MultiKeyCommandsPipelinepublic Response<Set<byte[]>> keys(byte[] pattern)
keys in interface MultiKeyBinaryRedisPipelinepublic Response<List<String>> mget(String... keys)
mget in interface MultiKeyCommandsPipelinepublic Response<List<byte[]>> mget(byte[]... keys)
mget in interface MultiKeyBinaryRedisPipelinepublic Response<String> mset(String... keysvalues)
mset in interface MultiKeyCommandsPipelinepublic Response<String> mset(byte[]... keysvalues)
mset in interface MultiKeyBinaryRedisPipelinepublic Response<Long> msetnx(String... keysvalues)
msetnx in interface MultiKeyCommandsPipelinepublic Response<Long> msetnx(byte[]... keysvalues)
msetnx in interface MultiKeyBinaryRedisPipelinepublic Response<String> rename(String oldkey, String newkey)
rename in interface MultiKeyCommandsPipelinepublic Response<String> rename(byte[] oldkey, byte[] newkey)
rename in interface MultiKeyBinaryRedisPipelinepublic Response<Long> renamenx(String oldkey, String newkey)
renamenx in interface MultiKeyCommandsPipelinepublic Response<Long> renamenx(byte[] oldkey, byte[] newkey)
renamenx in interface MultiKeyBinaryRedisPipelinepublic Response<String> rpoplpush(String srckey, String dstkey)
rpoplpush in interface MultiKeyCommandsPipelinepublic Response<byte[]> rpoplpush(byte[] srckey, byte[] dstkey)
rpoplpush in interface MultiKeyBinaryRedisPipelinepublic Response<Set<String>> sdiff(String... keys)
sdiff in interface MultiKeyCommandsPipelinepublic Response<Set<byte[]>> sdiff(byte[]... keys)
sdiff in interface MultiKeyBinaryRedisPipelinepublic Response<Long> sdiffstore(String dstkey, String... keys)
sdiffstore in interface MultiKeyCommandsPipelinepublic Response<Long> sdiffstore(byte[] dstkey, byte[]... keys)
sdiffstore in interface MultiKeyBinaryRedisPipelinepublic Response<Set<String>> sinter(String... keys)
sinter in interface MultiKeyCommandsPipelinepublic Response<Set<byte[]>> sinter(byte[]... keys)
sinter in interface MultiKeyBinaryRedisPipelinepublic Response<Long> sinterstore(String dstkey, String... keys)
sinterstore in interface MultiKeyCommandsPipelinepublic Response<Long> sinterstore(byte[] dstkey, byte[]... keys)
sinterstore in interface MultiKeyBinaryRedisPipelinepublic Response<Long> smove(String srckey, String dstkey, String member)
smove in interface MultiKeyCommandsPipelinepublic Response<Long> smove(byte[] srckey, byte[] dstkey, byte[] member)
smove in interface MultiKeyBinaryRedisPipelinepublic Response<Long> sort(String key, SortingParams sortingParameters, String dstkey)
sort in interface MultiKeyCommandsPipelinepublic Response<Long> sort(byte[] key, SortingParams sortingParameters, byte[] dstkey)
sort in interface MultiKeyBinaryRedisPipelinepublic Response<Long> sort(String key, String dstkey)
sort in interface MultiKeyCommandsPipelinepublic Response<Long> sort(byte[] key, byte[] dstkey)
sort in interface MultiKeyBinaryRedisPipelinepublic Response<Set<String>> sunion(String... keys)
sunion in interface MultiKeyCommandsPipelinepublic Response<Set<byte[]>> sunion(byte[]... keys)
sunion in interface MultiKeyBinaryRedisPipelinepublic Response<Long> sunionstore(String dstkey, String... keys)
sunionstore in interface MultiKeyCommandsPipelinepublic Response<Long> sunionstore(byte[] dstkey, byte[]... keys)
sunionstore in interface MultiKeyBinaryRedisPipelinepublic Response<String> watch(String... keys)
watch in interface MultiKeyCommandsPipelinepublic Response<String> watch(byte[]... keys)
watch in interface MultiKeyBinaryRedisPipelinepublic Response<String> unwatch()
unwatch in interface MultiKeyBinaryRedisPipelineunwatch in interface MultiKeyCommandsPipelinepublic Response<Set<byte[]>> zdiff(byte[]... keys)
zdiff in interface MultiKeyBinaryRedisPipelinepublic Response<Set<Tuple>> zdiffWithScores(byte[]... keys)
zdiffWithScores in interface MultiKeyBinaryRedisPipelinepublic Response<Set<String>> zdiff(String... keys)
zdiff in interface MultiKeyCommandsPipelinepublic Response<Set<Tuple>> zdiffWithScores(String... keys)
zdiffWithScores in interface MultiKeyCommandsPipelinepublic Response<Long> zdiffStore(byte[] dstkey, byte[]... keys)
zdiffStore in interface MultiKeyBinaryRedisPipelinepublic Response<Long> zdiffStore(String dstkey, String... keys)
zdiffStore in interface MultiKeyCommandsPipelinepublic Response<Set<byte[]>> zinter(ZParams params, byte[]... keys)
zinter in interface MultiKeyBinaryRedisPipelinepublic Response<Set<Tuple>> zinterWithScores(ZParams params, byte[]... keys)
zinterWithScores in interface MultiKeyBinaryRedisPipelinepublic Response<Set<String>> zinter(ZParams params, String... keys)
zinter in interface MultiKeyCommandsPipelinepublic Response<Set<Tuple>> zinterWithScores(ZParams params, String... keys)
zinterWithScores in interface MultiKeyCommandsPipelinepublic Response<Long> zinterstore(String dstkey, String... sets)
zinterstore in interface MultiKeyCommandsPipelinepublic Response<Long> zinterstore(byte[] dstkey, byte[]... sets)
zinterstore in interface MultiKeyBinaryRedisPipelinepublic Response<Long> zinterstore(String dstkey, ZParams params, String... sets)
zinterstore in interface MultiKeyCommandsPipelinepublic Response<Long> zinterstore(byte[] dstkey, ZParams params, byte[]... sets)
zinterstore in interface MultiKeyBinaryRedisPipelinepublic Response<Set<byte[]>> zunion(ZParams params, byte[]... keys)
zunion in interface MultiKeyBinaryRedisPipelinepublic Response<Set<Tuple>> zunionWithScores(ZParams params, byte[]... keys)
zunionWithScores in interface MultiKeyBinaryRedisPipelinepublic Response<Set<String>> zunion(ZParams params, String... keys)
zunion in interface MultiKeyCommandsPipelinepublic Response<Set<Tuple>> zunionWithScores(ZParams params, String... keys)
zunionWithScores in interface MultiKeyCommandsPipelinepublic Response<Long> zunionstore(String dstkey, String... sets)
zunionstore in interface MultiKeyCommandsPipelinepublic Response<Long> zunionstore(byte[] dstkey, byte[]... sets)
zunionstore in interface MultiKeyBinaryRedisPipelinepublic Response<Long> zunionstore(String dstkey, ZParams params, String... sets)
zunionstore in interface MultiKeyCommandsPipelinepublic Response<Long> zunionstore(byte[] dstkey, ZParams params, byte[]... sets)
zunionstore in interface MultiKeyBinaryRedisPipelinepublic Response<String> bgrewriteaof()
bgrewriteaof in interface BasicRedisPipelinepublic Response<String> bgsave()
bgsave in interface BasicRedisPipelinepublic Response<List<String>> configGet(String pattern)
configGet in interface BasicRedisPipelinepublic Response<String> configSet(String parameter, String value)
configSet in interface BasicRedisPipelinepublic Response<String> brpoplpush(String source, String destination, int timeout)
brpoplpush in interface MultiKeyCommandsPipelinepublic Response<byte[]> brpoplpush(byte[] source, byte[] destination, int timeout)
brpoplpush in interface MultiKeyBinaryRedisPipelinepublic Response<String> configResetStat()
configResetStat in interface BasicRedisPipelinepublic Response<String> save()
save in interface BasicRedisPipelinepublic Response<Long> lastsave()
lastsave in interface BasicRedisPipelinepublic Response<Long> publish(String channel, String message)
publish in interface MultiKeyCommandsPipelinepublic Response<Long> publish(byte[] channel, byte[] message)
publish in interface MultiKeyBinaryRedisPipelinepublic Response<String> randomKey()
randomKey in interface MultiKeyCommandsPipelinepublic Response<byte[]> randomKeyBinary()
randomKeyBinary in interface MultiKeyBinaryRedisPipelinepublic Response<String> flushDB()
flushDB in interface BasicRedisPipelinepublic Response<String> flushAll()
flushAll in interface BasicRedisPipelinepublic Response<String> flushDB(FlushMode flushMode)
flushDB in interface BasicRedisPipelinepublic Response<String> flushAll(FlushMode flushMode)
flushAll in interface BasicRedisPipelinepublic Response<String> info()
info in interface BasicRedisPipelinepublic Response<Long> dbSize()
dbSize in interface BasicRedisPipelinepublic Response<String> shutdown()
shutdown in interface BasicRedisPipelinepublic Response<String> ping()
ping in interface BasicRedisPipelinepublic Response<String> select(int index)
select in interface BasicRedisPipelinepublic Response<String> swapDB(int index1, int index2)
swapDB in interface BasicRedisPipelinepublic Response<Long> bitop(BitOP op, byte[] destKey, byte[]... srcKeys)
bitop in interface MultiKeyBinaryRedisPipelinepublic Response<Long> bitop(BitOP op, String destKey, String... srcKeys)
bitop in interface MultiKeyCommandsPipelinepublic Response<String> clusterNodes()
clusterNodes in interface ClusterPipelinepublic Response<String> clusterMeet(String ip, int port)
clusterMeet in interface ClusterPipelinepublic Response<String> clusterAddSlots(int... slots)
clusterAddSlots in interface ClusterPipelinepublic Response<String> clusterDelSlots(int... slots)
clusterDelSlots in interface ClusterPipelinepublic Response<String> clusterInfo()
clusterInfo in interface ClusterPipelinepublic Response<List<String>> clusterGetKeysInSlot(int slot, int count)
clusterGetKeysInSlot in interface ClusterPipelinepublic Response<String> clusterSetSlotNode(int slot, String nodeId)
clusterSetSlotNode in interface ClusterPipelinepublic Response<String> clusterSetSlotMigrating(int slot, String nodeId)
clusterSetSlotMigrating in interface ClusterPipelinepublic Response<String> clusterSetSlotImporting(int slot, String nodeId)
clusterSetSlotImporting in interface ClusterPipelinepublic Response<Object> eval(String script)
eval in interface ScriptingCommandsPipelinepublic Response<Object> eval(String script, List<String> keys, List<String> args)
eval in interface ScriptingCommandsPipelinepublic Response<Object> eval(String script, int keyCount, String... params)
eval in interface ScriptingCommandsPipelinepublic Response<Object> evalsha(String sha1)
evalsha in interface ScriptingCommandsPipelinepublic Response<Object> evalsha(String sha1, List<String> keys, List<String> args)
evalsha in interface ScriptingCommandsPipelinepublic Response<Object> evalsha(String sha1, int keyCount, String... params)
evalsha in interface ScriptingCommandsPipelinepublic Response<Object> eval(byte[] script)
eval in interface BinaryScriptingCommandsPipelinepublic Response<Object> eval(byte[] script, byte[] keyCount, byte[]... params)
eval in interface BinaryScriptingCommandsPipelinepublic Response<Object> eval(byte[] script, List<byte[]> keys, List<byte[]> args)
eval in interface BinaryScriptingCommandsPipelinepublic Response<Object> eval(byte[] script, int keyCount, byte[]... params)
eval in interface BinaryScriptingCommandsPipelinepublic Response<Object> evalsha(byte[] sha1)
evalsha in interface BinaryScriptingCommandsPipelinepublic Response<Object> evalsha(byte[] sha1, List<byte[]> keys, List<byte[]> args)
evalsha in interface BinaryScriptingCommandsPipelinepublic Response<Object> evalsha(byte[] sha1, int keyCount, byte[]... params)
evalsha in interface BinaryScriptingCommandsPipelinepublic Response<Long> pfcount(String... keys)
pfcount in interface MultiKeyCommandsPipelinepublic Response<Long> pfcount(byte[]... keys)
pfcount in interface MultiKeyBinaryRedisPipelinepublic Response<String> pfmerge(byte[] destkey, byte[]... sourcekeys)
pfmerge in interface MultiKeyBinaryRedisPipelinepublic Response<String> pfmerge(String destkey, String... sourcekeys)
pfmerge in interface MultiKeyCommandsPipelinepublic Response<List<String>> time()
time in interface BasicRedisPipelinepublic Response<Long> touch(String... keys)
touch in interface MultiKeyCommandsPipelinepublic Response<Long> touch(byte[]... keys)
touch in interface MultiKeyBinaryRedisPipelinepublic Response<String> moduleUnload(String name)
moduleUnload in interface BasicRedisPipelinepublic Response<List<Module>> moduleList()
moduleList in interface BasicRedisPipelinepublic Response<String> moduleLoad(String path)
moduleLoad in interface BasicRedisPipelinepublic Response<String> migrate(String host, int port, int destinationDB, int timeout, MigrateParams params, String... keys)
migrate in interface MultiKeyCommandsPipelinepublic Response<String> migrate(String host, int port, int destinationDB, int timeout, MigrateParams params, byte[]... keys)
migrate in interface MultiKeyBinaryRedisPipelinepublic Response<Object> sendCommand(ProtocolCommand cmd, String... args)
public Response<Object> sendCommand(ProtocolCommand cmd, byte[]... args)
public Response<Long> georadiusStore(String key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param, GeoRadiusStoreParam storeParam)
georadiusStore in interface MultiKeyCommandsPipelinepublic Response<Long> georadiusStore(byte[] key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param, GeoRadiusStoreParam storeParam)
georadiusStore in interface MultiKeyBinaryRedisPipelinepublic Response<Long> georadiusByMemberStore(byte[] key, byte[] member, double radius, GeoUnit unit, GeoRadiusParam param, GeoRadiusStoreParam storeParam)
georadiusByMemberStore in interface MultiKeyBinaryRedisPipelinepublic Response<Long> georadiusByMemberStore(String key, String member, double radius, GeoUnit unit, GeoRadiusParam param, GeoRadiusStoreParam storeParam)
georadiusByMemberStore in interface MultiKeyCommandsPipelinepublic Response<List<byte[]>> xread(int count, long block, Map<byte[],byte[]> streams)
xread in interface MultiKeyBinaryRedisPipelinepublic Response<List<byte[]>> xread(XReadParams xReadParams, Map.Entry<byte[],byte[]>... streams)
xread in interface MultiKeyBinaryRedisPipelinepublic Response<List<byte[]>> xreadGroup(byte[] groupname, byte[] consumer, int count, long block, boolean noAck, Map<byte[],byte[]> streams)
xreadGroup in interface MultiKeyBinaryRedisPipelinepublic Response<List<byte[]>> xreadGroup(byte[] groupname, byte[] consumer, XReadGroupParams xReadGroupParams, Map.Entry<byte[],byte[]>... streams)
xreadGroup in interface MultiKeyBinaryRedisPipelinepublic Response<List<Map.Entry<String,List<StreamEntry>>>> xread(int count, long block, Map.Entry<String,StreamEntryID>... streams)
xread in interface MultiKeyCommandsPipelinepublic Response<List<Map.Entry<String,List<StreamEntry>>>> xread(XReadParams xReadParams, Map<String,StreamEntryID> streams)
xread in interface MultiKeyCommandsPipelinepublic Response<List<Map.Entry<String,List<StreamEntry>>>> xreadGroup(String groupname, String consumer, int count, long block, boolean noAck, Map.Entry<String,StreamEntryID>... streams)
xreadGroup in interface MultiKeyCommandsPipelinepublic Response<List<Map.Entry<String,List<StreamEntry>>>> xreadGroup(String groupname, String consumer, XReadGroupParams xReadGroupParams, Map<String,StreamEntryID> streams)
xreadGroup in interface MultiKeyCommandsPipelineCopyright © 2021. All rights reserved.