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.zinterstore(String destkey,
List<String> sets,
AggregateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Long>> handler)
Intersect multiple sorted sets and store the resulting sorted set in a new key
|
RedisTransaction |
RedisTransaction.zinterstore(String destkey,
List<String> sets,
AggregateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Intersect multiple sorted sets and store the resulting sorted set in a new key
|
RedisClient |
RedisClient.zinterstoreWeighed(String destkey,
Map<String,Double> sets,
AggregateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Long>> handler)
Intersect multiple sorted sets and store the resulting sorted set in a new key using weights for scoring
|
RedisTransaction |
RedisTransaction.zinterstoreWeighed(String destkey,
Map<String,Double> sets,
AggregateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Intersect multiple sorted sets and store the resulting sorted set in a new key using weights for scoring
|
RedisClient |
RedisClient.zunionstore(String destkey,
List<String> sets,
AggregateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Long>> handler)
Add multiple sorted sets and store the resulting sorted set in a new key
|
RedisTransaction |
RedisTransaction.zunionstore(String destkey,
List<String> sets,
AggregateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Add multiple sorted sets and store the resulting sorted set in a new key
|
RedisClient |
RedisClient.zunionstoreWeighed(String key,
Map<String,Double> sets,
AggregateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Long>> handler)
Add multiple sorted sets using weights, and store the resulting sorted set in a new key
|
RedisTransaction |
RedisTransaction.zunionstoreWeighed(String key,
Map<String,Double> sets,
AggregateOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Add multiple sorted sets using weights, and store the resulting sorted set in a new key
|
Modifier and Type | Method and Description |
---|---|
static AggregateOptions |
AggregateOptions.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregateOptions[] |
AggregateOptions.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Copyright © 2018 Eclipse. All rights reserved.