Package | Description |
---|---|
io.vertx.redis | |
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)
Deprecated.
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)
Deprecated.
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)
Deprecated.
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)
Deprecated.
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)
Deprecated.
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)
Deprecated.
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)
Deprecated.
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)
Deprecated.
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)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static AggregateOptions[] |
AggregateOptions.values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Copyright © 2021 Eclipse. All rights reserved.