Package | Description |
---|---|
io.vertx.redis |
= Vert.x-redis
:toc: left
Vert.x-redis is redis client to be used with Vert.x.
|
io.vertx.redis.op |
Modifier and Type | Method and Description |
---|---|
RedisClient |
RedisClient.zrangebylex(String key,
String min,
String max,
LimitOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> handler)
Return a range of members in a sorted set, by lexicographical range
|
RedisTransaction |
RedisTransaction.zrangebylex(String key,
String min,
String max,
LimitOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Return a range of members in a sorted set, by lexicographical range
|
RedisClient |
RedisClient.zrevrangebylex(String key,
String max,
String min,
LimitOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> handler)
Return a range of members in a sorted set, by score, between the given lexicographical range with scores ordered from high to low
|
RedisTransaction |
RedisTransaction.zrevrangebylex(String key,
String max,
String min,
LimitOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Return a range of members in a sorted set, by score, between the given lexicographical range with scores ordered from high to low
|
Modifier and Type | Class and Description |
---|---|
class |
RangeLimitOptions |
Modifier and Type | Field and Description |
---|---|
static LimitOptions |
LimitOptions.NONE |
Modifier and Type | Method and Description |
---|---|
LimitOptions |
LimitOptions.setLimit(long offset,
long count) |
Constructor and Description |
---|
LimitOptions(LimitOptions obj) |
Copyright © 2018 Eclipse. All rights reserved.