| 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<Long> |
CommandObjects.bitpos(byte[] key,
boolean value,
BitPosParams params) |
Response<Long> |
PipeliningBase.bitpos(byte[] key,
boolean value,
BitPosParams params) |
long |
Jedis.bitpos(byte[] key,
boolean value,
BitPosParams params) |
long |
UnifiedJedis.bitpos(byte[] key,
boolean value,
BitPosParams params) |
CommandObject<Long> |
CommandObjects.bitpos(String key,
boolean value,
BitPosParams params) |
Response<Long> |
PipeliningBase.bitpos(String key,
boolean value,
BitPosParams params) |
long |
Jedis.bitpos(String key,
boolean value,
BitPosParams params) |
long |
UnifiedJedis.bitpos(String key,
boolean value,
BitPosParams params) |
| Modifier and Type | Method and Description |
|---|---|
long |
BitBinaryCommands.bitpos(byte[] key,
boolean value,
BitPosParams params) |
Response<Long> |
BitPipelineBinaryCommands.bitpos(byte[] key,
boolean value,
BitPosParams params) |
Response<Long> |
BitPipelineCommands.bitpos(String key,
boolean value,
BitPosParams params) |
long |
BitCommands.bitpos(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 © 2024. All rights reserved.