Package | Description |
---|---|
redis.clients.jedis | |
redis.clients.jedis.commands |
Modifier and Type | Method and Description |
---|---|
ZParams |
ZParams.aggregate(ZParams.Aggregate aggregate) |
ZParams |
ZParams.weights(double... weights)
Set weights.
|
Modifier and Type | Method and Description |
---|---|
Response<Set<byte[]>> |
MultiKeyPipelineBase.zinter(ZParams params,
byte[]... keys) |
Set<byte[]> |
BinaryJedisCluster.zinter(ZParams params,
byte[]... keys)
Deprecated.
|
Set<byte[]> |
BinaryJedis.zinter(ZParams params,
byte[]... keys)
Deprecated.
Intersect multiple sorted sets, This command is similar to ZINTERSTORE, but instead of storing
the resulting sorted set, it is returned to the client.
|
void |
BinaryClient.zinter(ZParams params,
byte[]... keys)
Deprecated.
|
Response<Set<String>> |
MultiKeyPipelineBase.zinter(ZParams params,
String... keys) |
Set<String> |
JedisCluster.zinter(ZParams params,
String... keys) |
Set<String> |
Jedis.zinter(ZParams params,
String... keys)
Intersect multiple sorted sets, This command is similar to ZINTERSTORE, but instead of storing
the resulting sorted set, it is returned to the client.
|
void |
Client.zinter(ZParams params,
String... keys)
Deprecated.
|
Response<Long> |
MultiKeyPipelineBase.zinterstore(byte[] dstkey,
ZParams params,
byte[]... sets) |
Long |
BinaryJedisCluster.zinterstore(byte[] dstkey,
ZParams params,
byte[]... sets)
Deprecated.
|
Long |
BinaryJedis.zinterstore(byte[] dstkey,
ZParams params,
byte[]... sets)
Deprecated.
Creates a union or intersection of N sorted sets given by keys k1 through kN, and stores it at
dstkey.
|
void |
BinaryClient.zinterstore(byte[] dstkey,
ZParams params,
byte[]... sets)
Deprecated.
|
Response<Long> |
MultiKeyPipelineBase.zinterstore(String dstkey,
ZParams params,
String... sets) |
Long |
JedisCluster.zinterstore(String dstkey,
ZParams params,
String... sets) |
Long |
Jedis.zinterstore(String dstkey,
ZParams params,
String... sets)
Creates a union or intersection of N sorted sets given by keys k1 through kN, and stores it at
dstkey.
|
void |
Client.zinterstore(String dstkey,
ZParams params,
String... sets)
Deprecated.
|
Response<Set<Tuple>> |
MultiKeyPipelineBase.zinterWithScores(ZParams params,
byte[]... keys) |
Set<Tuple> |
BinaryJedisCluster.zinterWithScores(ZParams params,
byte[]... keys)
Deprecated.
|
Set<Tuple> |
BinaryJedis.zinterWithScores(ZParams params,
byte[]... keys)
Deprecated.
Intersect multiple sorted sets, This command is similar to ZINTERSTORE, but instead of storing
the resulting sorted set, it is returned to the client.
|
void |
BinaryClient.zinterWithScores(ZParams params,
byte[]... keys)
Deprecated.
|
Response<Set<Tuple>> |
MultiKeyPipelineBase.zinterWithScores(ZParams params,
String... keys) |
Set<Tuple> |
JedisCluster.zinterWithScores(ZParams params,
String... keys) |
Set<Tuple> |
Jedis.zinterWithScores(ZParams params,
String... keys)
Intersect multiple sorted sets, This command is similar to ZINTERSTORE, but instead of storing
the resulting sorted set, it is returned to the client.
|
void |
Client.zinterWithScores(ZParams params,
String... keys)
Deprecated.
|
Response<Set<byte[]>> |
MultiKeyPipelineBase.zunion(ZParams params,
byte[]... keys) |
Set<byte[]> |
BinaryJedisCluster.zunion(ZParams params,
byte[]... keys)
Deprecated.
|
Set<byte[]> |
BinaryJedis.zunion(ZParams params,
byte[]... keys)
Deprecated.
Add multiple sorted sets, This command is similar to ZUNIONSTORE, but instead of storing the
resulting sorted set, it is returned to the client.
|
void |
BinaryClient.zunion(ZParams params,
byte[]... keys)
Deprecated.
|
Response<Set<String>> |
MultiKeyPipelineBase.zunion(ZParams params,
String... keys) |
Set<String> |
JedisCluster.zunion(ZParams params,
String... keys) |
Set<String> |
Jedis.zunion(ZParams params,
String... keys)
Add multiple sorted sets, This command is similar to ZUNIONSTORE, but instead of storing the
resulting sorted set, it is returned to the client.
|
void |
Client.zunion(ZParams params,
String... keys)
Deprecated.
|
Response<Long> |
MultiKeyPipelineBase.zunionstore(byte[] dstkey,
ZParams params,
byte[]... sets) |
Long |
BinaryJedisCluster.zunionstore(byte[] dstkey,
ZParams params,
byte[]... sets)
Deprecated.
|
Long |
BinaryJedis.zunionstore(byte[] dstkey,
ZParams params,
byte[]... sets)
Deprecated.
Creates a union or intersection of N sorted sets given by keys k1 through kN, and stores it at
dstkey.
|
void |
BinaryClient.zunionstore(byte[] dstkey,
ZParams params,
byte[]... sets)
Deprecated.
|
Response<Long> |
MultiKeyPipelineBase.zunionstore(String dstkey,
ZParams params,
String... sets) |
Long |
JedisCluster.zunionstore(String dstkey,
ZParams params,
String... sets) |
Long |
Jedis.zunionstore(String dstkey,
ZParams params,
String... sets)
Creates a union or intersection of N sorted sets given by keys k1 through kN, and stores it at
dstkey.
|
void |
Client.zunionstore(String dstkey,
ZParams params,
String... sets)
Deprecated.
|
Response<Set<Tuple>> |
MultiKeyPipelineBase.zunionWithScores(ZParams params,
byte[]... keys) |
Set<Tuple> |
BinaryJedisCluster.zunionWithScores(ZParams params,
byte[]... keys)
Deprecated.
|
Set<Tuple> |
BinaryJedis.zunionWithScores(ZParams params,
byte[]... keys)
Deprecated.
Add multiple sorted sets with scores, This command is similar to ZUNIONSTORE, but instead of storing the
resulting sorted set, it is returned to the client.
|
void |
BinaryClient.zunionWithScores(ZParams params,
byte[]... keys)
Deprecated.
|
Response<Set<Tuple>> |
MultiKeyPipelineBase.zunionWithScores(ZParams params,
String... keys) |
Set<Tuple> |
JedisCluster.zunionWithScores(ZParams params,
String... keys) |
Set<Tuple> |
Jedis.zunionWithScores(ZParams params,
String... keys)
Add multiple sorted sets with scores, This command is similar to ZUNIONSTORE, but instead of storing the
resulting sorted set, it is returned to the client.
|
void |
Client.zunionWithScores(ZParams params,
String... keys)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Response<Set<byte[]>> |
MultiKeyBinaryRedisPipeline.zinter(ZParams params,
byte[]... keys) |
Set<byte[]> |
MultiKeyBinaryJedisClusterCommands.zinter(ZParams params,
byte[]... keys) |
Set<byte[]> |
MultiKeyBinaryCommands.zinter(ZParams params,
byte[]... keys) |
Set<String> |
MultiKeyJedisClusterCommands.zinter(ZParams params,
String... keys) |
Response<Set<String>> |
MultiKeyCommandsPipeline.zinter(ZParams params,
String... keys) |
Set<String> |
MultiKeyCommands.zinter(ZParams params,
String... keys) |
void |
Commands.zinter(ZParams params,
String... keys) |
Response<Long> |
MultiKeyBinaryRedisPipeline.zinterstore(byte[] dstkey,
ZParams params,
byte[]... sets) |
Long |
MultiKeyBinaryJedisClusterCommands.zinterstore(byte[] dstkey,
ZParams params,
byte[]... sets) |
Long |
MultiKeyBinaryCommands.zinterstore(byte[] dstkey,
ZParams params,
byte[]... sets) |
Long |
MultiKeyJedisClusterCommands.zinterstore(String dstkey,
ZParams params,
String... sets) |
Response<Long> |
MultiKeyCommandsPipeline.zinterstore(String dstkey,
ZParams params,
String... sets) |
Long |
MultiKeyCommands.zinterstore(String dstkey,
ZParams params,
String... sets) |
void |
Commands.zinterstore(String dstkey,
ZParams params,
String... sets) |
Response<Set<Tuple>> |
MultiKeyBinaryRedisPipeline.zinterWithScores(ZParams params,
byte[]... keys) |
Set<Tuple> |
MultiKeyBinaryJedisClusterCommands.zinterWithScores(ZParams params,
byte[]... keys) |
Set<Tuple> |
MultiKeyBinaryCommands.zinterWithScores(ZParams params,
byte[]... keys) |
Set<Tuple> |
MultiKeyJedisClusterCommands.zinterWithScores(ZParams params,
String... keys) |
Response<Set<Tuple>> |
MultiKeyCommandsPipeline.zinterWithScores(ZParams params,
String... keys) |
Set<Tuple> |
MultiKeyCommands.zinterWithScores(ZParams params,
String... keys) |
void |
Commands.zinterWithScores(ZParams params,
String... keys) |
Response<Set<byte[]>> |
MultiKeyBinaryRedisPipeline.zunion(ZParams params,
byte[]... keys) |
Set<byte[]> |
MultiKeyBinaryJedisClusterCommands.zunion(ZParams params,
byte[]... keys) |
Set<byte[]> |
MultiKeyBinaryCommands.zunion(ZParams params,
byte[]... keys) |
Set<String> |
MultiKeyJedisClusterCommands.zunion(ZParams params,
String... keys) |
Response<Set<String>> |
MultiKeyCommandsPipeline.zunion(ZParams params,
String... keys) |
Set<String> |
MultiKeyCommands.zunion(ZParams params,
String... keys) |
void |
Commands.zunion(ZParams params,
String... keys) |
Response<Long> |
MultiKeyBinaryRedisPipeline.zunionstore(byte[] dstkey,
ZParams params,
byte[]... sets) |
Long |
MultiKeyBinaryJedisClusterCommands.zunionstore(byte[] dstkey,
ZParams params,
byte[]... sets) |
Long |
MultiKeyBinaryCommands.zunionstore(byte[] dstkey,
ZParams params,
byte[]... sets) |
Long |
MultiKeyJedisClusterCommands.zunionstore(String dstkey,
ZParams params,
String... sets) |
Response<Long> |
MultiKeyCommandsPipeline.zunionstore(String dstkey,
ZParams params,
String... sets) |
Long |
MultiKeyCommands.zunionstore(String dstkey,
ZParams params,
String... sets) |
void |
Commands.zunionstore(String dstkey,
ZParams params,
String... sets) |
Response<Set<Tuple>> |
MultiKeyBinaryRedisPipeline.zunionWithScores(ZParams params,
byte[]... keys) |
Set<Tuple> |
MultiKeyBinaryJedisClusterCommands.zunionWithScores(ZParams params,
byte[]... keys) |
Set<Tuple> |
MultiKeyBinaryCommands.zunionWithScores(ZParams params,
byte[]... keys) |
Set<Tuple> |
MultiKeyJedisClusterCommands.zunionWithScores(ZParams params,
String... keys) |
Response<Set<Tuple>> |
MultiKeyCommandsPipeline.zunionWithScores(ZParams params,
String... keys) |
Set<Tuple> |
MultiKeyCommands.zunionWithScores(ZParams params,
String... keys) |
void |
Commands.zunionWithScores(ZParams params,
String... keys) |
Copyright © 2024. All rights reserved.