Package redis.clients.jedis.commands
Interface SortedSetPipelineBinaryCommands
- All Known Subinterfaces:
PipelineBinaryCommands
- All Known Implementing Classes:
ClusterPipeline,MultiNodePipelineBase,Pipeline,ReliableTransaction,ShardedPipeline,Transaction,TransactionBase
public interface SortedSetPipelineBinaryCommands
-
Method Summary
Modifier and TypeMethodDescriptionbzmpop(long timeout, SortedSetOption option, byte[]... keys) bzmpop(long timeout, SortedSetOption option, int count, byte[]... keys) bzpopmax(double timeout, byte[]... keys) bzpopmin(double timeout, byte[]... keys) zadd(byte[] key, double score, byte[] member) zadd(byte[] key, double score, byte[] member, ZAddParams params) zadd(byte[] key, Map<byte[], Double> scoreMembers, ZAddParams params) zaddIncr(byte[] key, double score, byte[] member, ZAddParams params) zcard(byte[] key) zcount(byte[] key, byte[] min, byte[] max) zcount(byte[] key, double min, double max) zdiff(byte[]... keys) zdiffStore(byte[] dstkey, byte[]... keys) zdiffWithScores(byte[]... keys) zincrby(byte[] key, double increment, byte[] member) zincrby(byte[] key, double increment, byte[] member, ZIncrByParams params) zintercard(byte[]... keys) zintercard(long limit, byte[]... keys) zinterstore(byte[] dstkey, byte[]... sets) zinterstore(byte[] dstkey, ZParams params, byte[]... sets) zinterWithScores(ZParams params, byte[]... keys) zlexcount(byte[] key, byte[] min, byte[] max) zmpop(SortedSetOption option, byte[]... keys) zmpop(SortedSetOption option, int count, byte[]... keys) zmscore(byte[] key, byte[]... members) zpopmax(byte[] key) zpopmax(byte[] key, int count) zpopmin(byte[] key) zpopmin(byte[] key, int count) Response<byte[]> zrandmember(byte[] key) zrandmember(byte[] key, long count) zrandmemberWithScores(byte[] key, long count) zrange(byte[] key, long start, long stop) zrange(byte[] key, ZRangeParams zRangeParams) zrangeByLex(byte[] key, byte[] min, byte[] max) zrangeByLex(byte[] key, byte[] min, byte[] max, int offset, int count) zrangeByScore(byte[] key, byte[] min, byte[] max) zrangeByScore(byte[] key, byte[] min, byte[] max, int offset, int count) zrangeByScore(byte[] key, double min, double max) zrangeByScore(byte[] key, double min, double max, int offset, int count) zrangeByScoreWithScores(byte[] key, byte[] min, byte[] max) zrangeByScoreWithScores(byte[] key, byte[] min, byte[] max, int offset, int count) zrangeByScoreWithScores(byte[] key, double min, double max) zrangeByScoreWithScores(byte[] key, double min, double max, int offset, int count) zrangestore(byte[] dest, byte[] src, ZRangeParams zRangeParams) zrangeWithScores(byte[] key, long start, long stop) zrangeWithScores(byte[] key, ZRangeParams zRangeParams) zrank(byte[] key, byte[] member) zrankWithScore(byte[] key, byte[] member) zrem(byte[] key, byte[]... members) zremrangeByLex(byte[] key, byte[] min, byte[] max) zremrangeByRank(byte[] key, long start, long stop) zremrangeByScore(byte[] key, byte[] min, byte[] max) zremrangeByScore(byte[] key, double min, double max) zrevrange(byte[] key, long start, long stop) zrevrangeByLex(byte[] key, byte[] max, byte[] min) zrevrangeByLex(byte[] key, byte[] max, byte[] min, int offset, int count) zrevrangeByScore(byte[] key, byte[] max, byte[] min) zrevrangeByScore(byte[] key, byte[] max, byte[] min, int offset, int count) zrevrangeByScore(byte[] key, double max, double min) zrevrangeByScore(byte[] key, double max, double min, int offset, int count) zrevrangeByScoreWithScores(byte[] key, byte[] max, byte[] min) zrevrangeByScoreWithScores(byte[] key, byte[] max, byte[] min, int offset, int count) zrevrangeByScoreWithScores(byte[] key, double max, double min) zrevrangeByScoreWithScores(byte[] key, double max, double min, int offset, int count) zrevrangeWithScores(byte[] key, long start, long stop) zrevrank(byte[] key, byte[] member) zrevrankWithScore(byte[] key, byte[] member) default Response<ScanResult<Tuple>> zscan(byte[] key, byte[] cursor) zscan(byte[] key, byte[] cursor, ScanParams params) zscore(byte[] key, byte[] member) zunionstore(byte[] dstkey, byte[]... sets) zunionstore(byte[] dstkey, ZParams params, byte[]... sets) zunionWithScores(ZParams params, byte[]... keys)
-
Method Details
-
zadd
-
zadd
-
zadd
-
zadd
-
zaddIncr
-
zrem
-
zincrby
-
zincrby
-
zrank
-
zrevrank
-
zrankWithScore
-
zrevrankWithScore
-
zrange
-
zrevrange
-
zrangeWithScores
-
zrevrangeWithScores
-
zrandmember
-
zrandmember
-
zrandmemberWithScores
-
zcard
-
zscore
-
zmscore
-
zpopmax
-
zpopmax
-
zpopmin
-
zpopmin
-
zcount
-
zcount
-
zrangeByScore
-
zrangeByScore
-
zrevrangeByScore
-
zrangeByScore
-
zrevrangeByScore
-
zrangeByScore
-
zrevrangeByScore
-
zrangeByScoreWithScores
-
zrevrangeByScoreWithScores
-
zrangeByScoreWithScores
-
zrevrangeByScore
-
zrangeByScoreWithScores
-
zrevrangeByScoreWithScores
-
zrangeByScoreWithScores
-
zrevrangeByScoreWithScores
-
zrevrangeByScoreWithScores
-
zremrangeByRank
-
zremrangeByScore
-
zremrangeByScore
-
zlexcount
-
zrangeByLex
-
zrangeByLex
-
zrevrangeByLex
-
zrevrangeByLex
-
zrange
-
zrangeWithScores
-
zrangestore
-
zremrangeByLex
-
zscan
-
zscan
-
bzpopmax
-
bzpopmin
-
zdiff
-
zdiffWithScores
-
zdiffStore
-
zinter
-
zinterWithScores
-
zinterstore
-
zinterstore
-
zintercard
-
zintercard
-
zunion
-
zunionWithScores
-
zunionstore
-
zunionstore
-
zmpop
-
zmpop
-
bzmpop
-
bzmpop
Response<KeyValue<byte[],List<Tuple>>> bzmpop(long timeout, SortedSetOption option, int count, byte[]... keys)
-