| Package | Description |
|---|---|
| redis.clients.jedis | |
| redis.clients.jedis.commands |
This package contains the interfaces that contain methods representing Redis core commands.
|
| redis.clients.jedis.params |
This package contains the classes that represent optional parameters of core Redis commands.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.lang.Double> |
Jedis.increx(byte[] key,
double increment,
IncrexFloatParams params) |
java.util.List<java.lang.Double> |
UnifiedJedis.increx(byte[] key,
double increment,
IncrexFloatParams params) |
Response<java.util.List<java.lang.Double>> |
PipeliningBase.increx(byte[] key,
double increment,
IncrexFloatParams params) |
CommandObject<java.util.List<java.lang.Double>> |
CommandObjects.increx(byte[] key,
double increment,
IncrexFloatParams params) |
java.util.List<java.lang.Double> |
Jedis.increx(java.lang.String key,
double increment,
IncrexFloatParams params) |
java.util.List<java.lang.Double> |
UnifiedJedis.increx(java.lang.String key,
double increment,
IncrexFloatParams params) |
Response<java.util.List<java.lang.Double>> |
PipeliningBase.increx(java.lang.String key,
double increment,
IncrexFloatParams params) |
CommandObject<java.util.List<java.lang.Double>> |
CommandObjects.increx(java.lang.String key,
double increment,
IncrexFloatParams params) |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.lang.Double> |
StringBinaryCommands.increx(byte[] key,
double increment,
IncrexFloatParams params)
Increment the floating-point number stored at key by
increment, with optional bounds,
saturation, and expiration control. |
Response<java.util.List<java.lang.Double>> |
StringPipelineBinaryCommands.increx(byte[] key,
double increment,
IncrexFloatParams params)
Pipeline variant of
StringBinaryCommands.increx(byte[], double, IncrexFloatParams). |
java.util.List<java.lang.Double> |
StringCommands.increx(java.lang.String key,
double increment,
IncrexFloatParams params)
INCREX Command
Increment the floating-point number stored at key by
increment, with optional
lower/upper bounds, saturation, and expiration control. |
Response<java.util.List<java.lang.Double>> |
StringPipelineCommands.increx(java.lang.String key,
double increment,
IncrexFloatParams params)
Pipeline variant of
StringCommands.increx(String, double, IncrexFloatParams). |
| Modifier and Type | Method and Description |
|---|---|
static IncrexFloatParams |
IncrexFloatParams.increxFloatParams() |
IncrexFloatParams |
IncrexFloatParams.lbound(double lbound) |
IncrexFloatParams |
IncrexFloatParams.ubound(double ubound) |
Copyright © 2026. All rights reserved.