| 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.lang.Long> |
PipeliningBase.bitpos(byte[] key,
boolean value,
BitPosParams params) |
long |
UnifiedJedis.bitpos(byte[] key,
boolean value,
BitPosParams params) |
CommandObject<java.lang.Long> |
CommandObjects.bitpos(byte[] key,
boolean value,
BitPosParams params) |
long |
Jedis.bitpos(byte[] key,
boolean value,
BitPosParams params) |
Response<java.lang.Long> |
PipeliningBase.bitpos(java.lang.String key,
boolean value,
BitPosParams params) |
long |
UnifiedJedis.bitpos(java.lang.String key,
boolean value,
BitPosParams params) |
CommandObject<java.lang.Long> |
CommandObjects.bitpos(java.lang.String key,
boolean value,
BitPosParams params) |
long |
Jedis.bitpos(java.lang.String key,
boolean value,
BitPosParams params) |
| Modifier and Type | Method and Description |
|---|---|
long |
BitBinaryCommands.bitpos(byte[] key,
boolean value,
BitPosParams params) |
Response<java.lang.Long> |
BitPipelineBinaryCommands.bitpos(byte[] key,
boolean value,
BitPosParams params) |
Response<java.lang.Long> |
BitPipelineCommands.bitpos(java.lang.String key,
boolean value,
BitPosParams params) |
long |
BitCommands.bitpos(java.lang.String key,
boolean value,
BitPosParams params)
Bitpos Command
Return the position of the first bit set to 1 or 0 in a string.
|
| Modifier and Type | Method and Description |
|---|---|
static BitPosParams |
BitPosParams.bitPosParams() |
BitPosParams |
BitPosParams.end(long end)
START must be set for END option. |
BitPosParams |
BitPosParams.modifier(BitCountOption modifier)
|
BitPosParams |
BitPosParams.start(long start) |
Copyright © 2025. All rights reserved.