| 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 |
|---|---|
Response<java.util.List<java.lang.Long>> |
PipeliningBase.increx(byte[] key,
long increment,
IncrexParams params) |
java.util.List<java.lang.Long> |
UnifiedJedis.increx(byte[] key,
long increment,
IncrexParams params) |
CommandObject<java.util.List<java.lang.Long>> |
CommandObjects.increx(byte[] key,
long increment,
IncrexParams params) |
java.util.List<java.lang.Long> |
Jedis.increx(byte[] key,
long increment,
IncrexParams params) |
Response<java.util.List<java.lang.Long>> |
PipeliningBase.increx(java.lang.String key,
long increment,
IncrexParams params) |
java.util.List<java.lang.Long> |
UnifiedJedis.increx(java.lang.String key,
long increment,
IncrexParams params) |
CommandObject<java.util.List<java.lang.Long>> |
CommandObjects.increx(java.lang.String key,
long increment,
IncrexParams params) |
java.util.List<java.lang.Long> |
Jedis.increx(java.lang.String key,
long increment,
IncrexParams params) |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.lang.Long> |
StringBinaryCommands.increx(byte[] key,
long increment,
IncrexParams params)
Increment the integer number stored at key by
increment, with optional bounds,
saturation, and expiration control. |
Response<java.util.List<java.lang.Long>> |
StringPipelineBinaryCommands.increx(byte[] key,
long increment,
IncrexParams params)
Pipeline variant of
StringBinaryCommands.increx(byte[], long, IncrexParams). |
java.util.List<java.lang.Long> |
StringCommands.increx(java.lang.String key,
long increment,
IncrexParams params)
INCREX Command
Increment the integer number stored at key by
increment, with optional lower/upper
bounds, saturation, and expiration control. |
Response<java.util.List<java.lang.Long>> |
StringPipelineCommands.increx(java.lang.String key,
long increment,
IncrexParams params)
Pipeline variant of
StringCommands.increx(String, long, IncrexParams). |
| Modifier and Type | Method and Description |
|---|---|
static IncrexParams |
IncrexParams.increxParams() |
IncrexParams |
IncrexParams.lbound(long lbound) |
IncrexParams |
IncrexParams.ubound(long ubound) |
Copyright © 2026. All rights reserved.