public interface IRedisSortedSet
| Modifier and Type | Interface and Description |
|---|---|
static class |
IRedisSortedSet.ZsetPair |
Long zadd(String key, IRedisSortedSet.ZsetPair scoremember, IRedisSortedSet.ZsetPair... scoresmembers) throws WrongTypeException, NotImplementedException
Long zadd(String key, double score, String member, Object... scoresmembers) throws WrongTypeException, NotImplementedException, SyntaxErrorException, NotFloatException
Long zcard(String key) throws WrongTypeException, NotImplementedException
Long zcount(String key, double min, double max) throws WrongTypeException, NotImplementedException
String zincrby(String key, double increment, String member) throws WrongTypeException, NotImplementedException
Long zinterstore(String destination, int numkeys, String... options) throws WrongTypeException, SyntaxErrorException, NotImplementedException
Long zlexcount(String key, String min, String max) throws WrongTypeException, NotValidStringRangeItemException, NotImplementedException
Set<IRedisSortedSet.ZsetPair> zrange(String key, long start, long stop, String... options) throws WrongTypeException, NotImplementedException
Set<IRedisSortedSet.ZsetPair> zrangebylex(String key, String min, String max, String... options) throws WrongTypeException, NotValidStringRangeItemException, NotImplementedException
Set<IRedisSortedSet.ZsetPair> zrevrangebylex(String key, String max, String min, String... options) throws WrongTypeException, NotValidStringRangeItemException, NotImplementedException
Set<IRedisSortedSet.ZsetPair> zrangebyscore(String key, String min, String max, String... options) throws WrongTypeException, NotFloatMinMaxException, NotIntegerException, SyntaxErrorException, NotImplementedException
Long zrank(String key, String member) throws WrongTypeException, NotImplementedException
Long zrem(String key, String member, String... members) throws WrongTypeException, NotImplementedException
Long zremrangebylex(String key, String min, String max) throws WrongTypeException, NotValidStringRangeItemException, NotImplementedException
Long zremrangebyrank(String key, long start, long stop) throws WrongTypeException, NotImplementedException
Long zremrangebyscore(String key, String min, String max) throws WrongTypeException, NotFloatMinMaxException, NotImplementedException
Set<IRedisSortedSet.ZsetPair> zrevrange(String key, long start, long stop, String... options) throws WrongTypeException, NotImplementedException
Set<IRedisSortedSet.ZsetPair> zrevrangebyscore(String key, String max, String min, String... options) throws WrongTypeException, NotFloatMinMaxException, NotIntegerException, SyntaxErrorException, NotImplementedException
Long zrevrank(String key, String member) throws WrongTypeException, NotImplementedException
Double zscore(String key, String member) throws WrongTypeException, NotImplementedException
Long zunionstore(String destination, int numkeys, String... options) throws WrongTypeException, SyntaxErrorException, NotImplementedException
ScanResult<Set<IRedisSortedSet.ZsetPair>> zscan(String key, long cursor, String... options) throws WrongTypeException, NotImplementedException
Copyright © 2015. All rights reserved.