Interface TransactionalBitMapCommands<K>
-
- Type Parameters:
K- the type of the key
- All Superinterfaces:
TransactionalRedisCommands
- All Known Implementing Classes:
BlockingTransactionalBitMapCommandsImpl
public interface TransactionalBitMapCommands<K> extends TransactionalRedisCommands
Allows executing commands from thebitmapgroup in a Redis transaction (Multi). See the bitmap command list for further information about these commands.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbitcount(K key)Execute the command BITCOUNT.voidbitcount(K key, long start, long end)Execute the command BITCOUNT.voidbitfield(K key, BitFieldArgs bitFieldArgs)Execute the command BITFIELD.voidbitopAnd(K destination, K... keys)Execute the command BITOP.voidbitopNot(K destination, K source)Execute the command BITOP.voidbitopOr(K destination, K... keys)Execute the command BITOP.voidbitopXor(K destination, K... keys)Execute the command BITOP.voidbitpos(K key, int valueToLookFor)Execute the command BITPOS.voidbitpos(K key, int bit, long start)Execute the command BITPOS.voidbitpos(K key, int bit, long start, long end)Execute the command BITPOS.voidgetbit(K key, long offset)Returns the bit value at offset in the string value stored at key.voidsetbit(K key, long offset, int value)Sets or clears the bit at offset in the string value stored at key.-
Methods inherited from interface io.quarkus.redis.datasource.TransactionalRedisCommands
getDataSource
-
-
-
-
Method Detail
-
bitcount
void bitcount(K key)
Execute the command BITCOUNT. Summary: Count set bits in a string Group: bitmap Requires Redis 2.6.0- Parameters:
key- the key
-
bitcount
void bitcount(K key, long start, long end)
Execute the command BITCOUNT. Summary: Count set bits in a string Group: bitmap Requires Redis 2.6.0- Parameters:
key- the keystart- the start indexend- the end index
-
getbit
void getbit(K key, long offset)
Returns the bit value at offset in the string value stored at key.- Parameters:
key- the key.offset- the offset
-
bitfield
void bitfield(K key, BitFieldArgs bitFieldArgs)
Execute the command BITFIELD. Summary: Perform arbitrary bitfield integer operations on strings Group: bitmap Requires Redis 3.2.0- Parameters:
key- the key
-
bitpos
void bitpos(K key, int valueToLookFor)
Execute the command BITPOS. Summary: Find first bit set or clear in a string Group: bitmap Requires Redis 2.8.7- Parameters:
key- the keyvalueToLookFor-1to look for1,0to look for0
-
bitpos
void bitpos(K key, int bit, long start)
Execute the command BITPOS. Summary: Find first bit set or clear in a string Group: bitmap Requires Redis 2.8.7- Parameters:
key- the keybit-1to look for1,0to look for0start- the start position
-
bitpos
void bitpos(K key, int bit, long start, long end)
Execute the command BITPOS. Summary: Find first bit set or clear in a string Group: bitmap Requires Redis 2.8.7- Parameters:
key- the keybit-trueto look for1,falseto look for0start- the start positionend- the end position
-
bitopAnd
void bitopAnd(K destination, K... keys)
Execute the command BITOP. Summary: Perform a bitwise AND operation between strings Group: bitmap Requires Redis 2.6.0- Parameters:
destination- the destination keykeys- the keys
-
bitopNot
void bitopNot(K destination, K source)
Execute the command BITOP. Summary: Perform a bitwise NOT operation between strings Group: bitmap Requires Redis 2.6.0- Parameters:
destination- the destination keysource- the source key
-
bitopOr
void bitopOr(K destination, K... keys)
Execute the command BITOP. Summary: Perform a bitwise OR operation between strings Group: bitmap Requires Redis 2.6.0- Parameters:
destination- the destination keykeys- the keys
-
bitopXor
void bitopXor(K destination, K... keys)
Execute the command BITOP. Summary: Perform a bitwise XOR operation between strings Group: bitmap Requires Redis 2.6.0- Parameters:
destination- the destination keykeys- the keys
-
setbit
void setbit(K key, long offset, int value)
Sets or clears the bit at offset in the string value stored at key.- Parameters:
key- the key.offset- the offsetvalue- the value (O or 1)
-
-