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.zrangeWithOptions(String key,
long start,
long stop,
RangeOptions 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 index
|
RedisTransaction |
RedisTransaction.zrangeWithOptions(String key,
long start,
long stop,
RangeOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Return a range of members in a sorted set, by index
|
RedisClient |
RedisClient.zrevrange(String key,
long start,
long stop,
RangeOptions 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 index, with scores ordered from high to low
|
RedisTransaction |
RedisTransaction.zrevrange(String key,
long start,
long stop,
RangeOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Return a range of members in a sorted set, by index, with scores ordered from high to low
|
Modifier and Type | Method and Description |
---|---|
static RangeOptions |
RangeOptions.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RangeOptions[] |
RangeOptions.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Copyright © 2018 Eclipse. All rights reserved.