| Package | Description |
|---|---|
| io.valkey | |
| io.valkey.commands |
This package contains the interfaces that contain methods representing Redis core commands.
|
| io.valkey.params |
This package contains the classes that represent optional parameters of core Redis commands.
|
| Modifier and Type | Method and Description |
|---|---|
CommandObject<Double> |
CommandObjects.zincrby(byte[] key,
double increment,
byte[] member,
ZIncrByParams params) |
Response<Double> |
PipeliningBase.zincrby(byte[] key,
double increment,
byte[] member,
ZIncrByParams params) |
Double |
Jedis.zincrby(byte[] key,
double increment,
byte[] member,
ZIncrByParams params) |
Double |
UnifiedJedis.zincrby(byte[] key,
double increment,
byte[] member,
ZIncrByParams params) |
CommandObject<Double> |
CommandObjects.zincrby(String key,
double increment,
String member,
ZIncrByParams params) |
Response<Double> |
PipeliningBase.zincrby(String key,
double increment,
String member,
ZIncrByParams params) |
Double |
Jedis.zincrby(String key,
double increment,
String member,
ZIncrByParams params) |
Double |
UnifiedJedis.zincrby(String key,
double increment,
String member,
ZIncrByParams params) |
| Modifier and Type | Method and Description |
|---|---|
Double |
SortedSetBinaryCommands.zincrby(byte[] key,
double increment,
byte[] member,
ZIncrByParams params) |
Response<Double> |
SortedSetPipelineBinaryCommands.zincrby(byte[] key,
double increment,
byte[] member,
ZIncrByParams params) |
Response<Double> |
SortedSetPipelineCommands.zincrby(String key,
double increment,
String member,
ZIncrByParams params) |
Double |
SortedSetCommands.zincrby(String key,
double increment,
String member,
ZIncrByParams params)
Similar to
ZINCRBY but can be used with optionals params. |
| Modifier and Type | Method and Description |
|---|---|
ZIncrByParams |
ZIncrByParams.nx()
Only set the key if it does not already exist.
|
ZIncrByParams |
ZIncrByParams.xx()
Only set the key if it already exist.
|
static ZIncrByParams |
ZIncrByParams.zIncrByParams() |
Copyright © 2024. All rights reserved.