Package redis.clients.jedis
Class PipelineBase
- java.lang.Object
-
- redis.clients.jedis.Queable
-
- redis.clients.jedis.PipelineBase
-
- All Implemented Interfaces:
BinaryRedisPipeline,RedisPipeline
- Direct Known Subclasses:
MultiKeyPipelineBase,ShardedJedisPipeline
public abstract class PipelineBase extends Queable implements BinaryRedisPipeline, RedisPipeline
-
-
Constructor Summary
Constructors Constructor Description PipelineBase()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description 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<List<Long>>bitfield(byte[] key, byte[]... elements)Response<List<Long>>bitfield(String key, String... elements)Response<List<Long>>bitfieldReadonly(byte[] key, byte[]... arguments)Response<List<Long>>bitfieldReadonly(String key, String... arguments)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 decrement)Response<Long>decrBy(String key, long decrement)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<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<Long>geoadd(byte[] key, double longitude, double latitude, byte[] member)Response<Long>geoadd(byte[] key, Map<byte[],GeoCoordinate> memberCoordinateMap)Response<Long>geoadd(String key, double longitude, double latitude, String member)Response<Long>geoadd(String key, Map<String,GeoCoordinate> memberCoordinateMap)Response<Double>geodist(byte[] key, byte[] member1, byte[] member2)Response<Double>geodist(byte[] key, byte[] member1, byte[] member2, GeoUnit unit)Response<Double>geodist(String key, String member1, String member2)Response<Double>geodist(String key, String member1, String member2, GeoUnit unit)Response<List<byte[]>>geohash(byte[] key, byte[]... members)Response<List<String>>geohash(String key, String... members)Response<List<GeoCoordinate>>geopos(byte[] key, byte[]... members)Response<List<GeoCoordinate>>geopos(String key, String... members)Response<List<GeoRadiusResponse>>georadius(byte[] key, double longitude, double latitude, double radius, GeoUnit unit)Response<List<GeoRadiusResponse>>georadius(byte[] key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)Response<List<GeoRadiusResponse>>georadius(String key, double longitude, double latitude, double radius, GeoUnit unit)Response<List<GeoRadiusResponse>>georadius(String key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)Response<List<GeoRadiusResponse>>georadiusByMember(byte[] key, byte[] member, double radius, GeoUnit unit)Response<List<GeoRadiusResponse>>georadiusByMember(byte[] key, byte[] member, double radius, GeoUnit unit, GeoRadiusParam param)Response<List<GeoRadiusResponse>>georadiusByMember(String key, String member, double radius, GeoUnit unit)Response<List<GeoRadiusResponse>>georadiusByMember(String key, String member, double radius, GeoUnit unit, GeoRadiusParam param)Response<List<GeoRadiusResponse>>georadiusByMemberReadonly(byte[] key, byte[] member, double radius, GeoUnit unit)Response<List<GeoRadiusResponse>>georadiusByMemberReadonly(byte[] key, byte[] member, double radius, GeoUnit unit, GeoRadiusParam param)Response<List<GeoRadiusResponse>>georadiusByMemberReadonly(String key, String member, double radius, GeoUnit unit)Response<List<GeoRadiusResponse>>georadiusByMemberReadonly(String key, String member, double radius, GeoUnit unit, GeoRadiusParam param)Response<List<GeoRadiusResponse>>georadiusReadonly(byte[] key, double longitude, double latitude, double radius, GeoUnit unit)Response<List<GeoRadiusResponse>>georadiusReadonly(byte[] key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)Response<List<GeoRadiusResponse>>georadiusReadonly(String key, double longitude, double latitude, double radius, GeoUnit unit)Response<List<GeoRadiusResponse>>georadiusReadonly(String key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)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 abstract ClientgetClient(byte[] key)protected abstract ClientgetClient(String key)Response<byte[]>getrange(byte[] key, long startOffset, long endOffset)Response<String>getrange(String key, long startOffset, long endOffset)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(byte[] key, Map<byte[],byte[]> hash)Response<Long>hset(String key, String field, String value)Response<Long>hset(String key, Map<String,String> hash)Response<Long>hsetnx(byte[] key, byte[] field, byte[] value)Response<Long>hsetnx(String key, String field, String value)Response<Long>hstrlen(byte[] key, byte[] field)Response<Long>hstrlen(String key, String field)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 increment)Response<Long>incrBy(String key, long increment)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, ListPosition where, byte[] pivot, byte[] value)Response<Long>linsert(String key, ListPosition where, String pivot, String value)Response<Long>llen(byte[] key)Response<Long>llen(String key)Response<byte[]>lpop(byte[] key)Response<List<byte[]>>lpop(byte[] key, int count)Response<String>lpop(String key)Response<List<String>>lpop(String key, int count)Response<Long>lpos(byte[] key, byte[] element)Response<Long>lpos(byte[] key, byte[] element, LPosParams params)Response<List<Long>>lpos(byte[] key, byte[] element, LPosParams params, long count)Response<Long>lpos(String key, String element)Response<Long>lpos(String key, String element, LPosParams params)Response<List<Long>>lpos(String key, String element, LPosParams params, long count)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 stop)Response<List<String>>lrange(String key, long start, long stop)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 stop)Response<String>ltrim(String key, long start, long stop)Response<String>migrate(String 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>objectFreq(byte[] key)Response<Long>objectFreq(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, long milliseconds)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, long milliseconds, byte[] value)Response<String>psetex(String key, long 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<String>restoreReplace(byte[] key, int ttl, byte[] serializedValue)Response<String>restoreReplace(String key, int ttl, byte[] serializedValue)Response<byte[]>rpop(byte[] key)Response<List<byte[]>>rpop(byte[] key, int count)Response<String>rpop(String key)Response<List<String>>rpop(String key, int count)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<Object>sendCommand(byte[] sampleKey, ProtocolCommand cmd, byte[]... args)Response<Object>sendCommand(String sampleKey, ProtocolCommand cmd, String... args)Response<String>set(byte[] key, byte[] value)Response<String>set(byte[] key, byte[] value, SetParams params)Response<String>set(String key, String value)Response<String>set(String key, String value, SetParams params)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)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<Boolean>>smismember(byte[] key, byte[]... members)Response<List<Boolean>>smismember(String key, String... members)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<Set<byte[]>>spop(byte[] key, long count)Response<String>spop(String key)Response<Set<String>>spop(String key, long count)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)Response<Long>touch(byte[] key)Response<Long>touch(String key)Response<Long>ttl(byte[] key)Response<Long>ttl(String key)Response<String>type(byte[] key)Response<String>type(String key)Response<Long>unlink(byte[] key)Response<Long>unlink(String key)Response<Long>xack(byte[] key, byte[] group, byte[]... ids)Response<Long>xack(String key, String group, StreamEntryID... ids)Response<byte[]>xadd(byte[] key, byte[] id, Map<byte[],byte[]> hash)Response<byte[]>xadd(byte[] key, byte[] id, Map<byte[],byte[]> hash, long maxLen, boolean approximateLength)Response<StreamEntryID>xadd(String key, StreamEntryID id, Map<String,String> hash)Response<StreamEntryID>xadd(String key, StreamEntryID id, Map<String,String> hash, long maxLen, boolean approximateLength)Response<List<byte[]>>xclaim(byte[] key, byte[] group, byte[] consumername, long minIdleTime, long newIdleTime, int retries, boolean force, byte[]... ids)Response<List<StreamEntry>>xclaim(String key, String group, String consumername, long minIdleTime, long newIdleTime, int retries, boolean force, StreamEntryID... ids)Response<Long>xdel(byte[] key, byte[]... ids)Response<Long>xdel(String key, StreamEntryID... ids)Response<String>xgroupCreate(byte[] key, byte[] groupname, byte[] id, boolean makeStream)Response<String>xgroupCreate(String key, String groupname, StreamEntryID id, boolean makeStream)Response<Long>xgroupDelConsumer(byte[] key, byte[] groupname, byte[] consumername)Response<Long>xgroupDelConsumer(String key, String groupname, String consumername)Response<Long>xgroupDestroy(byte[] key, byte[] groupname)Response<Long>xgroupDestroy(String key, String groupname)Response<String>xgroupSetID(byte[] key, byte[] groupname, byte[] id)Response<String>xgroupSetID(String key, String groupname, StreamEntryID id)Response<Long>xlen(byte[] key)Response<Long>xlen(String key)Response<List<StreamPendingEntry>>xpending(byte[] key, byte[] groupname, byte[] start, byte[] end, int count, byte[] consumername)Response<List<StreamPendingEntry>>xpending(String key, String groupname, StreamEntryID start, StreamEntryID end, int count, String consumername)Response<List<byte[]>>xrange(byte[] key, byte[] start, byte[] end, int count)Response<List<StreamEntry>>xrange(String key, StreamEntryID start, StreamEntryID end, int count)Response<List<byte[]>>xrevrange(byte[] key, byte[] end, byte[] start, int count)Response<List<StreamEntry>>xrevrange(String key, StreamEntryID end, StreamEntryID start, int count)Response<Long>xtrim(byte[] key, long maxLen, boolean approximateLength)Response<Long>xtrim(String key, long maxLen, boolean approximateLength)Response<Long>zadd(byte[] key, double score, byte[] member)Response<Long>zadd(byte[] key, double score, byte[] member, ZAddParams params)Response<Long>zadd(byte[] key, Map<byte[],Double> scoreMembers)Response<Long>zadd(byte[] key, Map<byte[],Double> scoreMembers, ZAddParams params)Response<Long>zadd(String key, double score, String member)Response<Long>zadd(String key, double score, String member, ZAddParams params)Response<Long>zadd(String key, Map<String,Double> scoreMembers)Response<Long>zadd(String key, Map<String,Double> scoreMembers, ZAddParams params)Response<Long>zcard(byte[] key)Response<Long>zcard(String key)Response<Long>zcount(byte[] key, byte[] min, byte[] max)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 increment, byte[] member)Response<Double>zincrby(byte[] key, double increment, byte[] member, ZIncrByParams params)Response<Double>zincrby(String key, double increment, String member)Response<Double>zincrby(String key, double increment, String member, ZIncrByParams params)Response<Long>zlexcount(byte[] key, byte[] min, byte[] max)Response<Long>zlexcount(String key, String min, String max)Response<List<Double>>zmscore(byte[] key, byte[]... members)Response<List<Double>>zmscore(String key, String... members)Response<Tuple>zpopmax(byte[] key)Response<Set<Tuple>>zpopmax(byte[] key, int count)Response<Tuple>zpopmax(String key)Response<Set<Tuple>>zpopmax(String key, int count)Response<Tuple>zpopmin(byte[] key)Response<Set<Tuple>>zpopmin(byte[] key, int count)Response<Tuple>zpopmin(String key)Response<Set<Tuple>>zpopmin(String key, int count)Response<Set<byte[]>>zrange(byte[] key, long start, long stop)Response<Set<String>>zrange(String key, long start, long stop)Response<Set<byte[]>>zrangeByLex(byte[] key, byte[] min, byte[] max)Response<Set<byte[]>>zrangeByLex(byte[] key, byte[] min, byte[] max, int offset, int count)Response<Set<String>>zrangeByLex(String key, String min, String max)Response<Set<String>>zrangeByLex(String key, String min, String max, 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 stop)Response<Set<Tuple>>zrangeWithScores(String key, long start, long stop)Response<Long>zrank(byte[] key, byte[] member)Response<Long>zrank(String key, String member)Response<Long>zrem(byte[] key, byte[]... members)Response<Long>zrem(String key, String... members)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 stop)Response<Long>zremrangeByRank(String key, long start, long stop)Response<Long>zremrangeByScore(byte[] key, byte[] min, byte[] max)Response<Long>zremrangeByScore(byte[] key, double min, double max)Response<Long>zremrangeByScore(String key, double min, double max)Response<Long>zremrangeByScore(String key, String min, String max)Response<Set<byte[]>>zrevrange(byte[] key, long start, long stop)Response<Set<String>>zrevrange(String key, long start, long stop)Response<Set<byte[]>>zrevrangeByLex(byte[] key, byte[] max, byte[] min)Response<Set<byte[]>>zrevrangeByLex(byte[] key, byte[] max, byte[] min, int offset, int count)Response<Set<String>>zrevrangeByLex(String key, String max, String min)Response<Set<String>>zrevrangeByLex(String key, String max, String min, int offset, int count)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 stop)Response<Set<Tuple>>zrevrangeWithScores(String key, long start, long stop)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, getPipelinedResponseLength, getResponse, hasPipelinedResponse
-
-
-
-
Method Detail
-
getClient
protected abstract Client getClient(byte[] key)
-
append
public Response<Long> append(String key, String value)
- Specified by:
appendin interfaceRedisPipeline
-
append
public Response<Long> append(byte[] key, byte[] value)
- Specified by:
appendin interfaceBinaryRedisPipeline
-
blpop
public Response<List<String>> blpop(String key)
- Specified by:
blpopin interfaceRedisPipeline
-
brpop
public Response<List<String>> brpop(String key)
- Specified by:
brpopin interfaceRedisPipeline
-
blpop
public Response<List<byte[]>> blpop(byte[] key)
- Specified by:
blpopin interfaceBinaryRedisPipeline
-
brpop
public Response<List<byte[]>> brpop(byte[] key)
- Specified by:
brpopin interfaceBinaryRedisPipeline
-
decr
public Response<Long> decr(String key)
- Specified by:
decrin interfaceRedisPipeline
-
decr
public Response<Long> decr(byte[] key)
- Specified by:
decrin interfaceBinaryRedisPipeline
-
decrBy
public Response<Long> decrBy(String key, long decrement)
- Specified by:
decrByin interfaceRedisPipeline
-
decrBy
public Response<Long> decrBy(byte[] key, long decrement)
- Specified by:
decrByin interfaceBinaryRedisPipeline
-
del
public Response<Long> del(String key)
- Specified by:
delin interfaceRedisPipeline
-
del
public Response<Long> del(byte[] key)
- Specified by:
delin interfaceBinaryRedisPipeline
-
unlink
public Response<Long> unlink(String key)
- Specified by:
unlinkin interfaceRedisPipeline
-
unlink
public Response<Long> unlink(byte[] key)
- Specified by:
unlinkin interfaceBinaryRedisPipeline
-
echo
public Response<String> echo(String string)
- Specified by:
echoin interfaceRedisPipeline
-
echo
public Response<byte[]> echo(byte[] string)
- Specified by:
echoin interfaceBinaryRedisPipeline
-
exists
public Response<Boolean> exists(String key)
- Specified by:
existsin interfaceRedisPipeline
-
exists
public Response<Boolean> exists(byte[] key)
- Specified by:
existsin interfaceBinaryRedisPipeline
-
expire
public Response<Long> expire(String key, int seconds)
- Specified by:
expirein interfaceRedisPipeline
-
expire
public Response<Long> expire(byte[] key, int seconds)
- Specified by:
expirein interfaceBinaryRedisPipeline
-
expireAt
public Response<Long> expireAt(String key, long unixTime)
- Specified by:
expireAtin interfaceRedisPipeline
-
expireAt
public Response<Long> expireAt(byte[] key, long unixTime)
- Specified by:
expireAtin interfaceBinaryRedisPipeline
-
get
public Response<String> get(String key)
- Specified by:
getin interfaceRedisPipeline
-
get
public Response<byte[]> get(byte[] key)
- Specified by:
getin interfaceBinaryRedisPipeline
-
getbit
public Response<Boolean> getbit(String key, long offset)
- Specified by:
getbitin interfaceRedisPipeline
-
getbit
public Response<Boolean> getbit(byte[] key, long offset)
- Specified by:
getbitin interfaceBinaryRedisPipeline
-
bitpos
public Response<Long> bitpos(String key, boolean value)
- Specified by:
bitposin interfaceRedisPipeline
-
bitpos
public Response<Long> bitpos(String key, boolean value, BitPosParams params)
- Specified by:
bitposin interfaceRedisPipeline
-
bitpos
public Response<Long> bitpos(byte[] key, boolean value)
- Specified by:
bitposin interfaceBinaryRedisPipeline
-
bitpos
public Response<Long> bitpos(byte[] key, boolean value, BitPosParams params)
- Specified by:
bitposin interfaceBinaryRedisPipeline
-
getrange
public Response<String> getrange(String key, long startOffset, long endOffset)
- Specified by:
getrangein interfaceRedisPipeline
-
getSet
public Response<String> getSet(String key, String value)
- Specified by:
getSetin interfaceRedisPipeline
-
getSet
public Response<byte[]> getSet(byte[] key, byte[] value)
- Specified by:
getSetin interfaceBinaryRedisPipeline
-
getrange
public Response<byte[]> getrange(byte[] key, long startOffset, long endOffset)
- Specified by:
getrangein interfaceBinaryRedisPipeline
-
hdel
public Response<Long> hdel(String key, String... field)
- Specified by:
hdelin interfaceRedisPipeline
-
hdel
public Response<Long> hdel(byte[] key, byte[]... field)
- Specified by:
hdelin interfaceBinaryRedisPipeline
-
hexists
public Response<Boolean> hexists(String key, String field)
- Specified by:
hexistsin interfaceRedisPipeline
-
hexists
public Response<Boolean> hexists(byte[] key, byte[] field)
- Specified by:
hexistsin interfaceBinaryRedisPipeline
-
hget
public Response<String> hget(String key, String field)
- Specified by:
hgetin interfaceRedisPipeline
-
hget
public Response<byte[]> hget(byte[] key, byte[] field)
- Specified by:
hgetin interfaceBinaryRedisPipeline
-
hgetAll
public Response<Map<String,String>> hgetAll(String key)
- Specified by:
hgetAllin interfaceRedisPipeline
-
hgetAll
public Response<Map<byte[],byte[]>> hgetAll(byte[] key)
- Specified by:
hgetAllin interfaceBinaryRedisPipeline
-
hincrBy
public Response<Long> hincrBy(String key, String field, long value)
- Specified by:
hincrByin interfaceRedisPipeline
-
hincrBy
public Response<Long> hincrBy(byte[] key, byte[] field, long value)
- Specified by:
hincrByin interfaceBinaryRedisPipeline
-
hkeys
public Response<Set<String>> hkeys(String key)
- Specified by:
hkeysin interfaceRedisPipeline
-
hkeys
public Response<Set<byte[]>> hkeys(byte[] key)
- Specified by:
hkeysin interfaceBinaryRedisPipeline
-
hlen
public Response<Long> hlen(String key)
- Specified by:
hlenin interfaceRedisPipeline
-
hlen
public Response<Long> hlen(byte[] key)
- Specified by:
hlenin interfaceBinaryRedisPipeline
-
hmget
public Response<List<String>> hmget(String key, String... fields)
- Specified by:
hmgetin interfaceRedisPipeline
-
hmget
public Response<List<byte[]>> hmget(byte[] key, byte[]... fields)
- Specified by:
hmgetin interfaceBinaryRedisPipeline
-
hmset
public Response<String> hmset(String key, Map<String,String> hash)
- Specified by:
hmsetin interfaceRedisPipeline
-
hmset
public Response<String> hmset(byte[] key, Map<byte[],byte[]> hash)
- Specified by:
hmsetin interfaceBinaryRedisPipeline
-
hset
public Response<Long> hset(String key, String field, String value)
- Specified by:
hsetin interfaceRedisPipeline
-
hset
public Response<Long> hset(byte[] key, byte[] field, byte[] value)
- Specified by:
hsetin interfaceBinaryRedisPipeline
-
hset
public Response<Long> hset(String key, Map<String,String> hash)
- Specified by:
hsetin interfaceRedisPipeline
-
hset
public Response<Long> hset(byte[] key, Map<byte[],byte[]> hash)
- Specified by:
hsetin interfaceBinaryRedisPipeline
-
hsetnx
public Response<Long> hsetnx(String key, String field, String value)
- Specified by:
hsetnxin interfaceRedisPipeline
-
hsetnx
public Response<Long> hsetnx(byte[] key, byte[] field, byte[] value)
- Specified by:
hsetnxin interfaceBinaryRedisPipeline
-
hvals
public Response<List<String>> hvals(String key)
- Specified by:
hvalsin interfaceRedisPipeline
-
hvals
public Response<List<byte[]>> hvals(byte[] key)
- Specified by:
hvalsin interfaceBinaryRedisPipeline
-
incr
public Response<Long> incr(String key)
- Specified by:
incrin interfaceRedisPipeline
-
incr
public Response<Long> incr(byte[] key)
- Specified by:
incrin interfaceBinaryRedisPipeline
-
incrBy
public Response<Long> incrBy(String key, long increment)
- Specified by:
incrByin interfaceRedisPipeline
-
incrBy
public Response<Long> incrBy(byte[] key, long increment)
- Specified by:
incrByin interfaceBinaryRedisPipeline
-
lindex
public Response<String> lindex(String key, long index)
- Specified by:
lindexin interfaceRedisPipeline
-
lindex
public Response<byte[]> lindex(byte[] key, long index)
- Specified by:
lindexin interfaceBinaryRedisPipeline
-
linsert
public Response<Long> linsert(String key, ListPosition where, String pivot, String value)
- Specified by:
linsertin interfaceRedisPipeline
-
linsert
public Response<Long> linsert(byte[] key, ListPosition where, byte[] pivot, byte[] value)
- Specified by:
linsertin interfaceBinaryRedisPipeline
-
llen
public Response<Long> llen(String key)
- Specified by:
llenin interfaceRedisPipeline
-
llen
public Response<Long> llen(byte[] key)
- Specified by:
llenin interfaceBinaryRedisPipeline
-
lpop
public Response<String> lpop(String key)
- Specified by:
lpopin interfaceRedisPipeline
-
lpop
public Response<byte[]> lpop(byte[] key)
- Specified by:
lpopin interfaceBinaryRedisPipeline
-
lpop
public Response<List<String>> lpop(String key, int count)
- Specified by:
lpopin interfaceRedisPipeline
-
lpop
public Response<List<byte[]>> lpop(byte[] key, int count)
- Specified by:
lpopin interfaceBinaryRedisPipeline
-
lpos
public Response<Long> lpos(String key, String element)
- Specified by:
lposin interfaceRedisPipeline
-
lpos
public Response<Long> lpos(byte[] key, byte[] element)
- Specified by:
lposin interfaceBinaryRedisPipeline
-
lpos
public Response<Long> lpos(String key, String element, LPosParams params)
- Specified by:
lposin interfaceRedisPipeline
-
lpos
public Response<Long> lpos(byte[] key, byte[] element, LPosParams params)
- Specified by:
lposin interfaceBinaryRedisPipeline
-
lpos
public Response<List<Long>> lpos(String key, String element, LPosParams params, long count)
- Specified by:
lposin interfaceRedisPipeline
-
lpos
public Response<List<Long>> lpos(byte[] key, byte[] element, LPosParams params, long count)
- Specified by:
lposin interfaceBinaryRedisPipeline
-
lpush
public Response<Long> lpush(String key, String... string)
- Specified by:
lpushin interfaceRedisPipeline
-
lpush
public Response<Long> lpush(byte[] key, byte[]... string)
- Specified by:
lpushin interfaceBinaryRedisPipeline
-
lpushx
public Response<Long> lpushx(String key, String... string)
- Specified by:
lpushxin interfaceRedisPipeline
-
lpushx
public Response<Long> lpushx(byte[] key, byte[]... bytes)
- Specified by:
lpushxin interfaceBinaryRedisPipeline
-
lrange
public Response<List<String>> lrange(String key, long start, long stop)
- Specified by:
lrangein interfaceRedisPipeline
-
lrange
public Response<List<byte[]>> lrange(byte[] key, long start, long stop)
- Specified by:
lrangein interfaceBinaryRedisPipeline
-
lrem
public Response<Long> lrem(String key, long count, String value)
- Specified by:
lremin interfaceRedisPipeline
-
lrem
public Response<Long> lrem(byte[] key, long count, byte[] value)
- Specified by:
lremin interfaceBinaryRedisPipeline
-
lset
public Response<String> lset(String key, long index, String value)
- Specified by:
lsetin interfaceRedisPipeline
-
lset
public Response<String> lset(byte[] key, long index, byte[] value)
- Specified by:
lsetin interfaceBinaryRedisPipeline
-
ltrim
public Response<String> ltrim(String key, long start, long stop)
- Specified by:
ltrimin interfaceRedisPipeline
-
ltrim
public Response<String> ltrim(byte[] key, long start, long stop)
- Specified by:
ltrimin interfaceBinaryRedisPipeline
-
move
public Response<Long> move(String key, int dbIndex)
- Specified by:
movein interfaceRedisPipeline
-
move
public Response<Long> move(byte[] key, int dbIndex)
- Specified by:
movein interfaceBinaryRedisPipeline
-
persist
public Response<Long> persist(String key)
- Specified by:
persistin interfaceRedisPipeline
-
persist
public Response<Long> persist(byte[] key)
- Specified by:
persistin interfaceBinaryRedisPipeline
-
rpop
public Response<String> rpop(String key)
- Specified by:
rpopin interfaceRedisPipeline
-
rpop
public Response<byte[]> rpop(byte[] key)
- Specified by:
rpopin interfaceBinaryRedisPipeline
-
rpop
public Response<List<String>> rpop(String key, int count)
- Specified by:
rpopin interfaceRedisPipeline
-
rpop
public Response<List<byte[]>> rpop(byte[] key, int count)
- Specified by:
rpopin interfaceBinaryRedisPipeline
-
rpush
public Response<Long> rpush(String key, String... string)
- Specified by:
rpushin interfaceRedisPipeline
-
rpush
public Response<Long> rpush(byte[] key, byte[]... string)
- Specified by:
rpushin interfaceBinaryRedisPipeline
-
rpushx
public Response<Long> rpushx(String key, String... string)
- Specified by:
rpushxin interfaceRedisPipeline
-
rpushx
public Response<Long> rpushx(byte[] key, byte[]... string)
- Specified by:
rpushxin interfaceBinaryRedisPipeline
-
sadd
public Response<Long> sadd(String key, String... member)
- Specified by:
saddin interfaceRedisPipeline
-
sadd
public Response<Long> sadd(byte[] key, byte[]... member)
- Specified by:
saddin interfaceBinaryRedisPipeline
-
scard
public Response<Long> scard(String key)
- Specified by:
scardin interfaceRedisPipeline
-
scard
public Response<Long> scard(byte[] key)
- Specified by:
scardin interfaceBinaryRedisPipeline
-
set
public Response<String> set(String key, String value)
- Specified by:
setin interfaceRedisPipeline
-
set
public Response<String> set(byte[] key, byte[] value)
- Specified by:
setin interfaceBinaryRedisPipeline
-
set
public Response<String> set(String key, String value, SetParams params)
- Specified by:
setin interfaceRedisPipeline
-
set
public Response<String> set(byte[] key, byte[] value, SetParams params)
- Specified by:
setin interfaceBinaryRedisPipeline
-
setbit
public Response<Boolean> setbit(String key, long offset, boolean value)
- Specified by:
setbitin interfaceRedisPipeline
-
setbit
public Response<Boolean> setbit(byte[] key, long offset, byte[] value)
- Specified by:
setbitin interfaceBinaryRedisPipeline
-
setex
public Response<String> setex(String key, int seconds, String value)
- Specified by:
setexin interfaceRedisPipeline
-
setex
public Response<String> setex(byte[] key, int seconds, byte[] value)
- Specified by:
setexin interfaceBinaryRedisPipeline
-
setnx
public Response<Long> setnx(String key, String value)
- Specified by:
setnxin interfaceRedisPipeline
-
setnx
public Response<Long> setnx(byte[] key, byte[] value)
- Specified by:
setnxin interfaceBinaryRedisPipeline
-
setrange
public Response<Long> setrange(String key, long offset, String value)
- Specified by:
setrangein interfaceBinaryRedisPipeline- Specified by:
setrangein interfaceRedisPipeline
-
setrange
public Response<Long> setrange(byte[] key, long offset, byte[] value)
- Specified by:
setrangein interfaceBinaryRedisPipeline
-
sismember
public Response<Boolean> sismember(String key, String member)
- Specified by:
sismemberin interfaceRedisPipeline
-
smismember
public Response<List<Boolean>> smismember(String key, String... members)
- Specified by:
smismemberin interfaceRedisPipeline
-
sismember
public Response<Boolean> sismember(byte[] key, byte[] member)
- Specified by:
sismemberin interfaceBinaryRedisPipeline
-
smismember
public Response<List<Boolean>> smismember(byte[] key, byte[]... members)
- Specified by:
smismemberin interfaceBinaryRedisPipeline
-
smembers
public Response<Set<String>> smembers(String key)
- Specified by:
smembersin interfaceRedisPipeline
-
smembers
public Response<Set<byte[]>> smembers(byte[] key)
- Specified by:
smembersin interfaceBinaryRedisPipeline
-
sort
public Response<List<byte[]>> sort(byte[] key)
- Specified by:
sortin interfaceBinaryRedisPipeline
-
sort
public Response<List<String>> sort(String key, SortingParams sortingParameters)
- Specified by:
sortin interfaceRedisPipeline
-
sort
public Response<List<byte[]>> sort(byte[] key, SortingParams sortingParameters)
- Specified by:
sortin interfaceBinaryRedisPipeline
-
spop
public Response<String> spop(String key)
- Specified by:
spopin interfaceRedisPipeline
-
spop
public Response<Set<String>> spop(String key, long count)
- Specified by:
spopin interfaceRedisPipeline
-
spop
public Response<byte[]> spop(byte[] key)
- Specified by:
spopin interfaceBinaryRedisPipeline
-
spop
public Response<Set<byte[]>> spop(byte[] key, long count)
- Specified by:
spopin interfaceBinaryRedisPipeline
-
srandmember
public Response<String> srandmember(String key)
- Specified by:
srandmemberin interfaceRedisPipeline
-
srandmember
public Response<List<String>> srandmember(String key, int count)
- Specified by:
srandmemberin interfaceRedisPipeline
-
srandmember
public Response<byte[]> srandmember(byte[] key)
- Specified by:
srandmemberin interfaceBinaryRedisPipeline
-
srandmember
public Response<List<byte[]>> srandmember(byte[] key, int count)
- Specified by:
srandmemberin interfaceBinaryRedisPipeline
-
srem
public Response<Long> srem(String key, String... member)
- Specified by:
sremin interfaceRedisPipeline
-
srem
public Response<Long> srem(byte[] key, byte[]... member)
- Specified by:
sremin interfaceBinaryRedisPipeline
-
strlen
public Response<Long> strlen(String key)
- Specified by:
strlenin interfaceRedisPipeline
-
strlen
public Response<Long> strlen(byte[] key)
- Specified by:
strlenin interfaceBinaryRedisPipeline
-
substr
public Response<String> substr(String key, int start, int end)
- Specified by:
substrin interfaceRedisPipeline
-
substr
public Response<String> substr(byte[] key, int start, int end)
- Specified by:
substrin interfaceBinaryRedisPipeline
-
touch
public Response<Long> touch(String key)
- Specified by:
touchin interfaceRedisPipeline
-
touch
public Response<Long> touch(byte[] key)
- Specified by:
touchin interfaceBinaryRedisPipeline
-
ttl
public Response<Long> ttl(String key)
- Specified by:
ttlin interfaceRedisPipeline
-
ttl
public Response<Long> ttl(byte[] key)
- Specified by:
ttlin interfaceBinaryRedisPipeline
-
type
public Response<String> type(String key)
- Specified by:
typein interfaceRedisPipeline
-
type
public Response<String> type(byte[] key)
- Specified by:
typein interfaceBinaryRedisPipeline
-
zadd
public Response<Long> zadd(String key, double score, String member)
- Specified by:
zaddin interfaceRedisPipeline
-
zadd
public Response<Long> zadd(String key, double score, String member, ZAddParams params)
- Specified by:
zaddin interfaceRedisPipeline
-
zadd
public Response<Long> zadd(String key, Map<String,Double> scoreMembers)
- Specified by:
zaddin interfaceRedisPipeline
-
zadd
public Response<Long> zadd(String key, Map<String,Double> scoreMembers, ZAddParams params)
- Specified by:
zaddin interfaceRedisPipeline
-
zadd
public Response<Long> zadd(byte[] key, double score, byte[] member)
- Specified by:
zaddin interfaceBinaryRedisPipeline
-
zadd
public Response<Long> zadd(byte[] key, double score, byte[] member, ZAddParams params)
- Specified by:
zaddin interfaceBinaryRedisPipeline
-
zadd
public Response<Long> zadd(byte[] key, Map<byte[],Double> scoreMembers)
- Specified by:
zaddin interfaceBinaryRedisPipeline
-
zadd
public Response<Long> zadd(byte[] key, Map<byte[],Double> scoreMembers, ZAddParams params)
- Specified by:
zaddin interfaceBinaryRedisPipeline
-
zcard
public Response<Long> zcard(String key)
- Specified by:
zcardin interfaceRedisPipeline
-
zcard
public Response<Long> zcard(byte[] key)
- Specified by:
zcardin interfaceBinaryRedisPipeline
-
zcount
public Response<Long> zcount(String key, double min, double max)
- Specified by:
zcountin interfaceRedisPipeline
-
zcount
public Response<Long> zcount(String key, String min, String max)
- Specified by:
zcountin interfaceRedisPipeline
-
zcount
public Response<Long> zcount(byte[] key, double min, double max)
- Specified by:
zcountin interfaceBinaryRedisPipeline
-
zcount
public Response<Long> zcount(byte[] key, byte[] min, byte[] max)
- Specified by:
zcountin interfaceBinaryRedisPipeline
-
zincrby
public Response<Double> zincrby(String key, double increment, String member)
- Specified by:
zincrbyin interfaceRedisPipeline
-
zincrby
public Response<Double> zincrby(String key, double increment, String member, ZIncrByParams params)
- Specified by:
zincrbyin interfaceRedisPipeline
-
zincrby
public Response<Double> zincrby(byte[] key, double increment, byte[] member)
- Specified by:
zincrbyin interfaceBinaryRedisPipeline
-
zincrby
public Response<Double> zincrby(byte[] key, double increment, byte[] member, ZIncrByParams params)
- Specified by:
zincrbyin interfaceBinaryRedisPipeline
-
zrange
public Response<Set<String>> zrange(String key, long start, long stop)
- Specified by:
zrangein interfaceRedisPipeline
-
zrange
public Response<Set<byte[]>> zrange(byte[] key, long start, long stop)
- Specified by:
zrangein interfaceBinaryRedisPipeline
-
zrangeByScore
public Response<Set<String>> zrangeByScore(String key, double min, double max)
- Specified by:
zrangeByScorein interfaceRedisPipeline
-
zrangeByScore
public Response<Set<byte[]>> zrangeByScore(byte[] key, double min, double max)
- Specified by:
zrangeByScorein interfaceBinaryRedisPipeline
-
zrangeByScore
public Response<Set<String>> zrangeByScore(String key, String min, String max)
- Specified by:
zrangeByScorein interfaceRedisPipeline
-
zrangeByScore
public Response<Set<byte[]>> zrangeByScore(byte[] key, byte[] min, byte[] max)
- Specified by:
zrangeByScorein interfaceBinaryRedisPipeline
-
zrangeByScore
public Response<Set<String>> zrangeByScore(String key, double min, double max, int offset, int count)
- Specified by:
zrangeByScorein interfaceRedisPipeline
-
zrangeByScore
public Response<Set<String>> zrangeByScore(String key, String min, String max, int offset, int count)
- Specified by:
zrangeByScorein interfaceRedisPipeline
-
zrangeByScore
public Response<Set<byte[]>> zrangeByScore(byte[] key, double min, double max, int offset, int count)
- Specified by:
zrangeByScorein interfaceBinaryRedisPipeline
-
zrangeByScore
public Response<Set<byte[]>> zrangeByScore(byte[] key, byte[] min, byte[] max, int offset, int count)
- Specified by:
zrangeByScorein interfaceBinaryRedisPipeline
-
zrangeByScoreWithScores
public Response<Set<Tuple>> zrangeByScoreWithScores(String key, double min, double max)
- Specified by:
zrangeByScoreWithScoresin interfaceRedisPipeline
-
zrangeByScoreWithScores
public Response<Set<Tuple>> zrangeByScoreWithScores(String key, String min, String max)
- Specified by:
zrangeByScoreWithScoresin interfaceRedisPipeline
-
zrangeByScoreWithScores
public Response<Set<Tuple>> zrangeByScoreWithScores(byte[] key, double min, double max)
- Specified by:
zrangeByScoreWithScoresin interfaceBinaryRedisPipeline
-
zrangeByScoreWithScores
public Response<Set<Tuple>> zrangeByScoreWithScores(byte[] key, byte[] min, byte[] max)
- Specified by:
zrangeByScoreWithScoresin interfaceBinaryRedisPipeline
-
zrangeByScoreWithScores
public Response<Set<Tuple>> zrangeByScoreWithScores(String key, double min, double max, int offset, int count)
- Specified by:
zrangeByScoreWithScoresin interfaceRedisPipeline
-
zrangeByScoreWithScores
public Response<Set<Tuple>> zrangeByScoreWithScores(String key, String min, String max, int offset, int count)
- Specified by:
zrangeByScoreWithScoresin interfaceRedisPipeline
-
zrangeByScoreWithScores
public Response<Set<Tuple>> zrangeByScoreWithScores(byte[] key, double min, double max, int offset, int count)
- Specified by:
zrangeByScoreWithScoresin interfaceBinaryRedisPipeline
-
zrangeByScoreWithScores
public Response<Set<Tuple>> zrangeByScoreWithScores(byte[] key, byte[] min, byte[] max, int offset, int count)
- Specified by:
zrangeByScoreWithScoresin interfaceBinaryRedisPipeline
-
zrevrangeByScore
public Response<Set<String>> zrevrangeByScore(String key, double max, double min)
- Specified by:
zrevrangeByScorein interfaceRedisPipeline
-
zrevrangeByScore
public Response<Set<byte[]>> zrevrangeByScore(byte[] key, double max, double min)
- Specified by:
zrevrangeByScorein interfaceBinaryRedisPipeline
-
zrevrangeByScore
public Response<Set<String>> zrevrangeByScore(String key, String max, String min)
- Specified by:
zrevrangeByScorein interfaceRedisPipeline
-
zrevrangeByScore
public Response<Set<byte[]>> zrevrangeByScore(byte[] key, byte[] max, byte[] min)
- Specified by:
zrevrangeByScorein interfaceBinaryRedisPipeline
-
zrevrangeByScore
public Response<Set<String>> zrevrangeByScore(String key, double max, double min, int offset, int count)
- Specified by:
zrevrangeByScorein interfaceRedisPipeline
-
zrevrangeByScore
public Response<Set<String>> zrevrangeByScore(String key, String max, String min, int offset, int count)
- Specified by:
zrevrangeByScorein interfaceRedisPipeline
-
zrevrangeByScore
public Response<Set<byte[]>> zrevrangeByScore(byte[] key, double max, double min, int offset, int count)
- Specified by:
zrevrangeByScorein interfaceBinaryRedisPipeline
-
zrevrangeByScore
public Response<Set<byte[]>> zrevrangeByScore(byte[] key, byte[] max, byte[] min, int offset, int count)
- Specified by:
zrevrangeByScorein interfaceBinaryRedisPipeline
-
zrevrangeByScoreWithScores
public Response<Set<Tuple>> zrevrangeByScoreWithScores(String key, double max, double min)
- Specified by:
zrevrangeByScoreWithScoresin interfaceRedisPipeline
-
zrevrangeByScoreWithScores
public Response<Set<Tuple>> zrevrangeByScoreWithScores(String key, String max, String min)
- Specified by:
zrevrangeByScoreWithScoresin interfaceRedisPipeline
-
zrevrangeByScoreWithScores
public Response<Set<Tuple>> zrevrangeByScoreWithScores(byte[] key, double max, double min)
- Specified by:
zrevrangeByScoreWithScoresin interfaceBinaryRedisPipeline
-
zrevrangeByScoreWithScores
public Response<Set<Tuple>> zrevrangeByScoreWithScores(byte[] key, byte[] max, byte[] min)
- Specified by:
zrevrangeByScoreWithScoresin interfaceBinaryRedisPipeline
-
zrevrangeByScoreWithScores
public Response<Set<Tuple>> zrevrangeByScoreWithScores(String key, double max, double min, int offset, int count)
- Specified by:
zrevrangeByScoreWithScoresin interfaceRedisPipeline
-
zrevrangeByScoreWithScores
public Response<Set<Tuple>> zrevrangeByScoreWithScores(String key, String max, String min, int offset, int count)
- Specified by:
zrevrangeByScoreWithScoresin interfaceRedisPipeline
-
zrevrangeByScoreWithScores
public Response<Set<Tuple>> zrevrangeByScoreWithScores(byte[] key, double max, double min, int offset, int count)
- Specified by:
zrevrangeByScoreWithScoresin interfaceBinaryRedisPipeline
-
zrevrangeByScoreWithScores
public Response<Set<Tuple>> zrevrangeByScoreWithScores(byte[] key, byte[] max, byte[] min, int offset, int count)
- Specified by:
zrevrangeByScoreWithScoresin interfaceBinaryRedisPipeline
-
zrangeWithScores
public Response<Set<Tuple>> zrangeWithScores(String key, long start, long stop)
- Specified by:
zrangeWithScoresin interfaceRedisPipeline
-
zrangeWithScores
public Response<Set<Tuple>> zrangeWithScores(byte[] key, long start, long stop)
- Specified by:
zrangeWithScoresin interfaceBinaryRedisPipeline
-
zrank
public Response<Long> zrank(String key, String member)
- Specified by:
zrankin interfaceRedisPipeline
-
zrank
public Response<Long> zrank(byte[] key, byte[] member)
- Specified by:
zrankin interfaceBinaryRedisPipeline
-
zrem
public Response<Long> zrem(String key, String... members)
- Specified by:
zremin interfaceRedisPipeline
-
zrem
public Response<Long> zrem(byte[] key, byte[]... members)
- Specified by:
zremin interfaceBinaryRedisPipeline
-
zremrangeByRank
public Response<Long> zremrangeByRank(String key, long start, long stop)
- Specified by:
zremrangeByRankin interfaceRedisPipeline
-
zremrangeByRank
public Response<Long> zremrangeByRank(byte[] key, long start, long stop)
- Specified by:
zremrangeByRankin interfaceBinaryRedisPipeline
-
zremrangeByScore
public Response<Long> zremrangeByScore(String key, double min, double max)
- Specified by:
zremrangeByScorein interfaceRedisPipeline
-
zremrangeByScore
public Response<Long> zremrangeByScore(String key, String min, String max)
- Specified by:
zremrangeByScorein interfaceRedisPipeline
-
zremrangeByScore
public Response<Long> zremrangeByScore(byte[] key, double min, double max)
- Specified by:
zremrangeByScorein interfaceBinaryRedisPipeline
-
zremrangeByScore
public Response<Long> zremrangeByScore(byte[] key, byte[] min, byte[] max)
- Specified by:
zremrangeByScorein interfaceBinaryRedisPipeline
-
zrevrange
public Response<Set<String>> zrevrange(String key, long start, long stop)
- Specified by:
zrevrangein interfaceRedisPipeline
-
zrevrange
public Response<Set<byte[]>> zrevrange(byte[] key, long start, long stop)
- Specified by:
zrevrangein interfaceBinaryRedisPipeline
-
zrevrangeWithScores
public Response<Set<Tuple>> zrevrangeWithScores(String key, long start, long stop)
- Specified by:
zrevrangeWithScoresin interfaceRedisPipeline
-
zrevrangeWithScores
public Response<Set<Tuple>> zrevrangeWithScores(byte[] key, long start, long stop)
- Specified by:
zrevrangeWithScoresin interfaceBinaryRedisPipeline
-
zrevrank
public Response<Long> zrevrank(String key, String member)
- Specified by:
zrevrankin interfaceRedisPipeline
-
zrevrank
public Response<Long> zrevrank(byte[] key, byte[] member)
- Specified by:
zrevrankin interfaceBinaryRedisPipeline
-
zscore
public Response<Double> zscore(String key, String member)
- Specified by:
zscorein interfaceRedisPipeline
-
zmscore
public Response<List<Double>> zmscore(String key, String... members)
- Specified by:
zmscorein interfaceRedisPipeline
-
zscore
public Response<Double> zscore(byte[] key, byte[] member)
- Specified by:
zscorein interfaceBinaryRedisPipeline
-
zmscore
public Response<List<Double>> zmscore(byte[] key, byte[]... members)
- Specified by:
zmscorein interfaceBinaryRedisPipeline
-
zpopmax
public Response<Tuple> zpopmax(String key)
- Specified by:
zpopmaxin interfaceRedisPipeline
-
zpopmax
public Response<Tuple> zpopmax(byte[] key)
- Specified by:
zpopmaxin interfaceBinaryRedisPipeline
-
zpopmax
public Response<Set<Tuple>> zpopmax(String key, int count)
- Specified by:
zpopmaxin interfaceRedisPipeline
-
zpopmax
public Response<Set<Tuple>> zpopmax(byte[] key, int count)
- Specified by:
zpopmaxin interfaceBinaryRedisPipeline
-
zpopmin
public Response<Tuple> zpopmin(String key)
- Specified by:
zpopminin interfaceRedisPipeline
-
zpopmin
public Response<Tuple> zpopmin(byte[] key)
- Specified by:
zpopminin interfaceBinaryRedisPipeline
-
zpopmin
public Response<Set<Tuple>> zpopmin(byte[] key, int count)
- Specified by:
zpopminin interfaceBinaryRedisPipeline
-
zpopmin
public Response<Set<Tuple>> zpopmin(String key, int count)
- Specified by:
zpopminin interfaceRedisPipeline
-
zlexcount
public Response<Long> zlexcount(byte[] key, byte[] min, byte[] max)
- Specified by:
zlexcountin interfaceBinaryRedisPipeline
-
zlexcount
public Response<Long> zlexcount(String key, String min, String max)
- Specified by:
zlexcountin interfaceRedisPipeline
-
zrangeByLex
public Response<Set<byte[]>> zrangeByLex(byte[] key, byte[] min, byte[] max)
- Specified by:
zrangeByLexin interfaceBinaryRedisPipeline
-
zrangeByLex
public Response<Set<String>> zrangeByLex(String key, String min, String max)
- Specified by:
zrangeByLexin interfaceRedisPipeline
-
zrangeByLex
public Response<Set<byte[]>> zrangeByLex(byte[] key, byte[] min, byte[] max, int offset, int count)
- Specified by:
zrangeByLexin interfaceBinaryRedisPipeline
-
zrangeByLex
public Response<Set<String>> zrangeByLex(String key, String min, String max, int offset, int count)
- Specified by:
zrangeByLexin interfaceRedisPipeline
-
zrevrangeByLex
public Response<Set<byte[]>> zrevrangeByLex(byte[] key, byte[] max, byte[] min)
- Specified by:
zrevrangeByLexin interfaceBinaryRedisPipeline
-
zrevrangeByLex
public Response<Set<String>> zrevrangeByLex(String key, String max, String min)
- Specified by:
zrevrangeByLexin interfaceRedisPipeline
-
zrevrangeByLex
public Response<Set<byte[]>> zrevrangeByLex(byte[] key, byte[] max, byte[] min, int offset, int count)
- Specified by:
zrevrangeByLexin interfaceBinaryRedisPipeline
-
zrevrangeByLex
public Response<Set<String>> zrevrangeByLex(String key, String max, String min, int offset, int count)
- Specified by:
zrevrangeByLexin interfaceRedisPipeline
-
zremrangeByLex
public Response<Long> zremrangeByLex(byte[] key, byte[] min, byte[] max)
- Specified by:
zremrangeByLexin interfaceBinaryRedisPipeline
-
zremrangeByLex
public Response<Long> zremrangeByLex(String key, String min, String max)
- Specified by:
zremrangeByLexin interfaceRedisPipeline
-
bitcount
public Response<Long> bitcount(String key)
- Specified by:
bitcountin interfaceRedisPipeline
-
bitcount
public Response<Long> bitcount(String key, long start, long end)
- Specified by:
bitcountin interfaceRedisPipeline
-
bitcount
public Response<Long> bitcount(byte[] key)
- Specified by:
bitcountin interfaceBinaryRedisPipeline
-
bitcount
public Response<Long> bitcount(byte[] key, long start, long end)
- Specified by:
bitcountin interfaceBinaryRedisPipeline
-
dump
public Response<byte[]> dump(String key)
- Specified by:
dumpin interfaceRedisPipeline
-
dump
public Response<byte[]> dump(byte[] key)
- Specified by:
dumpin interfaceBinaryRedisPipeline
-
migrate
public Response<String> migrate(String host, int port, String key, int destinationDb, int timeout)
- Specified by:
migratein interfaceRedisPipeline
-
migrate
public Response<String> migrate(String host, int port, byte[] key, int destinationDb, int timeout)
- Specified by:
migratein interfaceBinaryRedisPipeline
-
objectRefcount
public Response<Long> objectRefcount(String key)
- Specified by:
objectRefcountin interfaceRedisPipeline
-
objectRefcount
public Response<Long> objectRefcount(byte[] key)
- Specified by:
objectRefcountin interfaceBinaryRedisPipeline
-
objectEncoding
public Response<String> objectEncoding(String key)
- Specified by:
objectEncodingin interfaceRedisPipeline
-
objectEncoding
public Response<byte[]> objectEncoding(byte[] key)
- Specified by:
objectEncodingin interfaceBinaryRedisPipeline
-
objectIdletime
public Response<Long> objectIdletime(String key)
- Specified by:
objectIdletimein interfaceRedisPipeline
-
objectIdletime
public Response<Long> objectIdletime(byte[] key)
- Specified by:
objectIdletimein interfaceBinaryRedisPipeline
-
objectFreq
public Response<Long> objectFreq(byte[] key)
- Specified by:
objectFreqin interfaceBinaryRedisPipeline
-
objectFreq
public Response<Long> objectFreq(String key)
- Specified by:
objectFreqin interfaceRedisPipeline
-
pexpire
public Response<Long> pexpire(String key, long milliseconds)
- Specified by:
pexpirein interfaceRedisPipeline
-
pexpire
public Response<Long> pexpire(byte[] key, long milliseconds)
- Specified by:
pexpirein interfaceBinaryRedisPipeline
-
pexpireAt
public Response<Long> pexpireAt(String key, long millisecondsTimestamp)
- Specified by:
pexpireAtin interfaceRedisPipeline
-
pexpireAt
public Response<Long> pexpireAt(byte[] key, long millisecondsTimestamp)
- Specified by:
pexpireAtin interfaceBinaryRedisPipeline
-
pttl
public Response<Long> pttl(String key)
- Specified by:
pttlin interfaceRedisPipeline
-
pttl
public Response<Long> pttl(byte[] key)
- Specified by:
pttlin interfaceBinaryRedisPipeline
-
restore
public Response<String> restore(String key, int ttl, byte[] serializedValue)
- Specified by:
restorein interfaceRedisPipeline
-
restore
public Response<String> restore(byte[] key, int ttl, byte[] serializedValue)
- Specified by:
restorein interfaceBinaryRedisPipeline
-
restoreReplace
public Response<String> restoreReplace(String key, int ttl, byte[] serializedValue)
- Specified by:
restoreReplacein interfaceRedisPipeline
-
restoreReplace
public Response<String> restoreReplace(byte[] key, int ttl, byte[] serializedValue)
- Specified by:
restoreReplacein interfaceBinaryRedisPipeline
-
incrByFloat
public Response<Double> incrByFloat(String key, double increment)
- Specified by:
incrByFloatin interfaceRedisPipeline
-
incrByFloat
public Response<Double> incrByFloat(byte[] key, double increment)
- Specified by:
incrByFloatin interfaceBinaryRedisPipeline
-
psetex
public Response<String> psetex(String key, long milliseconds, String value)
- Specified by:
psetexin interfaceRedisPipeline
-
psetex
public Response<String> psetex(byte[] key, long milliseconds, byte[] value)
- Specified by:
psetexin interfaceBinaryRedisPipeline
-
hincrByFloat
public Response<Double> hincrByFloat(String key, String field, double increment)
- Specified by:
hincrByFloatin interfaceRedisPipeline
-
hincrByFloat
public Response<Double> hincrByFloat(byte[] key, byte[] field, double increment)
- Specified by:
hincrByFloatin interfaceBinaryRedisPipeline
-
pfadd
public Response<Long> pfadd(byte[] key, byte[]... elements)
- Specified by:
pfaddin interfaceBinaryRedisPipeline
-
pfcount
public Response<Long> pfcount(byte[] key)
- Specified by:
pfcountin interfaceBinaryRedisPipeline
-
pfadd
public Response<Long> pfadd(String key, String... elements)
- Specified by:
pfaddin interfaceRedisPipeline
-
pfcount
public Response<Long> pfcount(String key)
- Specified by:
pfcountin interfaceRedisPipeline
-
geoadd
public Response<Long> geoadd(byte[] key, double longitude, double latitude, byte[] member)
- Specified by:
geoaddin interfaceBinaryRedisPipeline
-
geoadd
public Response<Long> geoadd(byte[] key, Map<byte[],GeoCoordinate> memberCoordinateMap)
- Specified by:
geoaddin interfaceBinaryRedisPipeline
-
geoadd
public Response<Long> geoadd(String key, double longitude, double latitude, String member)
- Specified by:
geoaddin interfaceRedisPipeline
-
geoadd
public Response<Long> geoadd(String key, Map<String,GeoCoordinate> memberCoordinateMap)
- Specified by:
geoaddin interfaceRedisPipeline
-
geodist
public Response<Double> geodist(byte[] key, byte[] member1, byte[] member2)
- Specified by:
geodistin interfaceBinaryRedisPipeline
-
geodist
public Response<Double> geodist(byte[] key, byte[] member1, byte[] member2, GeoUnit unit)
- Specified by:
geodistin interfaceBinaryRedisPipeline
-
geodist
public Response<Double> geodist(String key, String member1, String member2)
- Specified by:
geodistin interfaceRedisPipeline
-
geodist
public Response<Double> geodist(String key, String member1, String member2, GeoUnit unit)
- Specified by:
geodistin interfaceRedisPipeline
-
geohash
public Response<List<byte[]>> geohash(byte[] key, byte[]... members)
- Specified by:
geohashin interfaceBinaryRedisPipeline
-
geohash
public Response<List<String>> geohash(String key, String... members)
- Specified by:
geohashin interfaceRedisPipeline
-
geopos
public Response<List<GeoCoordinate>> geopos(byte[] key, byte[]... members)
- Specified by:
geoposin interfaceBinaryRedisPipeline
-
geopos
public Response<List<GeoCoordinate>> geopos(String key, String... members)
- Specified by:
geoposin interfaceRedisPipeline
-
georadius
public Response<List<GeoRadiusResponse>> georadius(byte[] key, double longitude, double latitude, double radius, GeoUnit unit)
- Specified by:
georadiusin interfaceBinaryRedisPipeline
-
georadiusReadonly
public Response<List<GeoRadiusResponse>> georadiusReadonly(byte[] key, double longitude, double latitude, double radius, GeoUnit unit)
- Specified by:
georadiusReadonlyin interfaceBinaryRedisPipeline
-
georadius
public Response<List<GeoRadiusResponse>> georadius(byte[] key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)
- Specified by:
georadiusin interfaceBinaryRedisPipeline
-
georadiusReadonly
public Response<List<GeoRadiusResponse>> georadiusReadonly(byte[] key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)
- Specified by:
georadiusReadonlyin interfaceBinaryRedisPipeline
-
georadius
public Response<List<GeoRadiusResponse>> georadius(String key, double longitude, double latitude, double radius, GeoUnit unit)
- Specified by:
georadiusin interfaceRedisPipeline
-
georadiusReadonly
public Response<List<GeoRadiusResponse>> georadiusReadonly(String key, double longitude, double latitude, double radius, GeoUnit unit)
- Specified by:
georadiusReadonlyin interfaceRedisPipeline
-
georadius
public Response<List<GeoRadiusResponse>> georadius(String key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)
- Specified by:
georadiusin interfaceRedisPipeline
-
georadiusReadonly
public Response<List<GeoRadiusResponse>> georadiusReadonly(String key, double longitude, double latitude, double radius, GeoUnit unit, GeoRadiusParam param)
- Specified by:
georadiusReadonlyin interfaceRedisPipeline
-
georadiusByMember
public Response<List<GeoRadiusResponse>> georadiusByMember(byte[] key, byte[] member, double radius, GeoUnit unit)
- Specified by:
georadiusByMemberin interfaceBinaryRedisPipeline
-
georadiusByMemberReadonly
public Response<List<GeoRadiusResponse>> georadiusByMemberReadonly(byte[] key, byte[] member, double radius, GeoUnit unit)
- Specified by:
georadiusByMemberReadonlyin interfaceBinaryRedisPipeline
-
georadiusByMember
public Response<List<GeoRadiusResponse>> georadiusByMember(byte[] key, byte[] member, double radius, GeoUnit unit, GeoRadiusParam param)
- Specified by:
georadiusByMemberin interfaceBinaryRedisPipeline
-
georadiusByMemberReadonly
public Response<List<GeoRadiusResponse>> georadiusByMemberReadonly(byte[] key, byte[] member, double radius, GeoUnit unit, GeoRadiusParam param)
- Specified by:
georadiusByMemberReadonlyin interfaceBinaryRedisPipeline
-
georadiusByMember
public Response<List<GeoRadiusResponse>> georadiusByMember(String key, String member, double radius, GeoUnit unit)
- Specified by:
georadiusByMemberin interfaceRedisPipeline
-
georadiusByMemberReadonly
public Response<List<GeoRadiusResponse>> georadiusByMemberReadonly(String key, String member, double radius, GeoUnit unit)
- Specified by:
georadiusByMemberReadonlyin interfaceRedisPipeline
-
georadiusByMember
public Response<List<GeoRadiusResponse>> georadiusByMember(String key, String member, double radius, GeoUnit unit, GeoRadiusParam param)
- Specified by:
georadiusByMemberin interfaceRedisPipeline
-
georadiusByMemberReadonly
public Response<List<GeoRadiusResponse>> georadiusByMemberReadonly(String key, String member, double radius, GeoUnit unit, GeoRadiusParam param)
- Specified by:
georadiusByMemberReadonlyin interfaceRedisPipeline
-
bitfield
public Response<List<Long>> bitfield(String key, String... elements)
- Specified by:
bitfieldin interfaceRedisPipeline
-
bitfield
public Response<List<Long>> bitfield(byte[] key, byte[]... elements)
- Specified by:
bitfieldin interfaceBinaryRedisPipeline
-
bitfieldReadonly
public Response<List<Long>> bitfieldReadonly(byte[] key, byte[]... arguments)
- Specified by:
bitfieldReadonlyin interfaceBinaryRedisPipeline
-
bitfieldReadonly
public Response<List<Long>> bitfieldReadonly(String key, String... arguments)
- Specified by:
bitfieldReadonlyin interfaceRedisPipeline
-
hstrlen
public Response<Long> hstrlen(String key, String field)
- Specified by:
hstrlenin interfaceRedisPipeline
-
hstrlen
public Response<Long> hstrlen(byte[] key, byte[] field)
- Specified by:
hstrlenin interfaceBinaryRedisPipeline
-
xadd
public Response<StreamEntryID> xadd(String key, StreamEntryID id, Map<String,String> hash)
- Specified by:
xaddin interfaceRedisPipeline
-
xadd
public Response<byte[]> xadd(byte[] key, byte[] id, Map<byte[],byte[]> hash)
- Specified by:
xaddin interfaceBinaryRedisPipeline
-
xadd
public Response<StreamEntryID> xadd(String key, StreamEntryID id, Map<String,String> hash, long maxLen, boolean approximateLength)
- Specified by:
xaddin interfaceRedisPipeline
-
xadd
public Response<byte[]> xadd(byte[] key, byte[] id, Map<byte[],byte[]> hash, long maxLen, boolean approximateLength)
- Specified by:
xaddin interfaceBinaryRedisPipeline
-
xlen
public Response<Long> xlen(String key)
- Specified by:
xlenin interfaceRedisPipeline
-
xlen
public Response<Long> xlen(byte[] key)
- Specified by:
xlenin interfaceBinaryRedisPipeline
-
xrange
public Response<List<StreamEntry>> xrange(String key, StreamEntryID start, StreamEntryID end, int count)
- Specified by:
xrangein interfaceRedisPipeline
-
xrange
public Response<List<byte[]>> xrange(byte[] key, byte[] start, byte[] end, int count)
- Specified by:
xrangein interfaceBinaryRedisPipeline
-
xrevrange
public Response<List<StreamEntry>> xrevrange(String key, StreamEntryID end, StreamEntryID start, int count)
- Specified by:
xrevrangein interfaceRedisPipeline
-
xrevrange
public Response<List<byte[]>> xrevrange(byte[] key, byte[] end, byte[] start, int count)
- Specified by:
xrevrangein interfaceBinaryRedisPipeline
-
xack
public Response<Long> xack(String key, String group, StreamEntryID... ids)
- Specified by:
xackin interfaceRedisPipeline
-
xack
public Response<Long> xack(byte[] key, byte[] group, byte[]... ids)
- Specified by:
xackin interfaceBinaryRedisPipeline
-
xgroupCreate
public Response<String> xgroupCreate(String key, String groupname, StreamEntryID id, boolean makeStream)
- Specified by:
xgroupCreatein interfaceRedisPipeline
-
xgroupCreate
public Response<String> xgroupCreate(byte[] key, byte[] groupname, byte[] id, boolean makeStream)
- Specified by:
xgroupCreatein interfaceBinaryRedisPipeline
-
xgroupSetID
public Response<String> xgroupSetID(String key, String groupname, StreamEntryID id)
- Specified by:
xgroupSetIDin interfaceRedisPipeline
-
xgroupSetID
public Response<String> xgroupSetID(byte[] key, byte[] groupname, byte[] id)
- Specified by:
xgroupSetIDin interfaceBinaryRedisPipeline
-
xgroupDestroy
public Response<Long> xgroupDestroy(String key, String groupname)
- Specified by:
xgroupDestroyin interfaceRedisPipeline
-
xgroupDestroy
public Response<Long> xgroupDestroy(byte[] key, byte[] groupname)
- Specified by:
xgroupDestroyin interfaceBinaryRedisPipeline
-
xgroupDelConsumer
public Response<Long> xgroupDelConsumer(String key, String groupname, String consumername)
- Specified by:
xgroupDelConsumerin interfaceRedisPipeline
-
xgroupDelConsumer
public Response<Long> xgroupDelConsumer(byte[] key, byte[] groupname, byte[] consumername)
- Specified by:
xgroupDelConsumerin interfaceBinaryRedisPipeline
-
xpending
public Response<List<StreamPendingEntry>> xpending(String key, String groupname, StreamEntryID start, StreamEntryID end, int count, String consumername)
- Specified by:
xpendingin interfaceRedisPipeline
-
xpending
public Response<List<StreamPendingEntry>> xpending(byte[] key, byte[] groupname, byte[] start, byte[] end, int count, byte[] consumername)
- Specified by:
xpendingin interfaceBinaryRedisPipeline
-
xdel
public Response<Long> xdel(String key, StreamEntryID... ids)
- Specified by:
xdelin interfaceRedisPipeline
-
xdel
public Response<Long> xdel(byte[] key, byte[]... ids)
- Specified by:
xdelin interfaceBinaryRedisPipeline
-
xtrim
public Response<Long> xtrim(String key, long maxLen, boolean approximateLength)
- Specified by:
xtrimin interfaceRedisPipeline
-
xtrim
public Response<Long> xtrim(byte[] key, long maxLen, boolean approximateLength)
- Specified by:
xtrimin interfaceBinaryRedisPipeline
-
xclaim
public Response<List<StreamEntry>> xclaim(String key, String group, String consumername, long minIdleTime, long newIdleTime, int retries, boolean force, StreamEntryID... ids)
- Specified by:
xclaimin interfaceRedisPipeline
-
xclaim
public Response<List<byte[]>> xclaim(byte[] key, byte[] group, byte[] consumername, long minIdleTime, long newIdleTime, int retries, boolean force, byte[]... ids)
- Specified by:
xclaimin interfaceBinaryRedisPipeline
-
sendCommand
public Response<Object> sendCommand(String sampleKey, ProtocolCommand cmd, String... args)
-
sendCommand
public Response<Object> sendCommand(byte[] sampleKey, ProtocolCommand cmd, byte[]... args)
-
-