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.zrangebyscore(String key,
String min,
String max,
RangeLimitOptions 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
|
RedisTransaction |
RedisTransaction.zrangebyscore(String key,
String min,
String max,
RangeLimitOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Return a range of members in a sorted set, by score
|
RedisClient |
RedisClient.zrevrangebyscore(String key,
String max,
String min,
RangeLimitOptions 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, with scores ordered from high to low
|
RedisTransaction |
RedisTransaction.zrevrangebyscore(String key,
String max,
String min,
RangeLimitOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Return a range of members in a sorted set, by score, with scores ordered from high to low
|
Modifier and Type | Field and Description |
---|---|
static RangeLimitOptions |
RangeLimitOptions.NONE |
Modifier and Type | Method and Description |
---|---|
RangeLimitOptions |
RangeLimitOptions.useWithScores() |
Constructor and Description |
---|
RangeLimitOptions(RangeLimitOptions obj) |
Copyright © 2018 Eclipse. All rights reserved.