Interface ReactiveBitMapCommands<K>

Type Parameters:
K - the type of the key
All Superinterfaces:
ReactiveRedisCommands
All Known Implementing Classes:
ReactiveBitMapCommandsImpl

public interface ReactiveBitMapCommands<K> extends ReactiveRedisCommands
Allows executing commands from the bitmap group. See the bitmap command list for further information about these commands.
  • Method Summary

    Modifier and Type
    Method
    Description
    io.smallrye.mutiny.Uni<Long>
    bitcount(K key)
    Execute the command BITCOUNT.
    io.smallrye.mutiny.Uni<Long>
    bitcount(K key, long start, long end)
    Execute the command BITCOUNT.
    io.smallrye.mutiny.Uni<List<Long>>
    bitfield(K key, BitFieldArgs bitFieldArgs)
    Execute the command BITFIELD.
    io.smallrye.mutiny.Uni<Long>
    bitopAnd(K destination, K... keys)
    Execute the command BITOP.
    io.smallrye.mutiny.Uni<Long>
    bitopNot(K destination, K source)
    Execute the command BITOP.
    io.smallrye.mutiny.Uni<Long>
    bitopOr(K destination, K... keys)
    Execute the command BITOP.
    io.smallrye.mutiny.Uni<Long>
    bitopXor(K destination, K... keys)
    Execute the command BITOP.
    io.smallrye.mutiny.Uni<Long>
    bitpos(K key, int bit)
    Execute the command BITPOS.
    io.smallrye.mutiny.Uni<Long>
    bitpos(K key, int bit, long start)
    Execute the command BITPOS.
    io.smallrye.mutiny.Uni<Long>
    bitpos(K key, int bit, long start, long end)
    Execute the command BITPOS.
    io.smallrye.mutiny.Uni<Integer>
    getbit(K key, long offset)
    Returns the bit value at offset in the string value stored at key.
    io.smallrye.mutiny.Uni<Integer>
    setbit(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.ReactiveRedisCommands

    getDataSource
  • Method Details

    • bitcount

      io.smallrye.mutiny.Uni<Long> 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
      Returns:
      the number of bits set to 1 in the stored string.
    • bitcount

      io.smallrye.mutiny.Uni<Long> 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 key
      start - the start index
      end - the end index
      Returns:
      the number of bits set to 1 in the stored string.
    • getbit

      io.smallrye.mutiny.Uni<Integer> 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
      Returns:
      the bit value stored at offset (0 or 1).
    • bitfield

      io.smallrye.mutiny.Uni<List<Long>> 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
      Returns:
      the results from the bitfield commands as described on https://redis.io/commands/bitfield/.
    • bitpos

      io.smallrye.mutiny.Uni<Long> bitpos(K key, int bit)
      Execute the command BITPOS. Summary: Find first bit set or clear in a string Group: bitmap Requires Redis 2.8.7
      Parameters:
      key - the key
      bit - 1 to look for 1, 0 to look for 0
      Returns:
      the position of the first bit set to 1 or 0 according to the request. If we look for set bits (the bit argument is 1) and the string is empty or composed of just zero ints, -1 is returned. If we look for clear bits (the bit argument is 0) and the string only contains bit set to 1, the function returns the first bit not part of the string on the right. So if the string is three ints set to the value 0xff the command BITPOS key 0 will return 24, since up to bit 23 all the bits are 1. Basically, the function considers the right of the string as padded with zeros if you look for clear bits and specify no range or the start argument only. However, this behavior changes if you are looking for clear bits and specify a range with both start and end. If no clear bit is found in the specified range, the function returns -1 as the user specified a clear range and there are no 0 bits in that range.
    • bitpos

      io.smallrye.mutiny.Uni<Long> 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 key
      bit - 1 to look for 1, 0 to look for 0
      start - the start position
      Returns:
      the position of the first bit set to 1 or 0 according to the request. If we look for set bits (the bit argument is 1) and the string is empty or composed of just zero ints, -1 is returned. If we look for clear bits (the bit argument is 0) and the string only contains bit set to 1, the function returns the first bit not part of the string on the right. So if the string is three ints set to the value 0xff the command BITPOS key 0 will return 24, since up to bit 23 all the bits are 1. Basically, the function considers the right of the string as padded with zeros if you look for clear bits and specify no range or the start argument only. However, this behavior changes if you are looking for clear bits and specify a range with both start and end. If no clear bit is found in the specified range, the function returns -1 as the user specified a clear range and there are no 0 bits in that range.
    • bitpos

      io.smallrye.mutiny.Uni<Long> 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 key
      bit - 1 to look for 1, 0 to look for 0
      start - the start position
      end - the end position
      Returns:
      the position of the first bit set to 1 or 0 according to the request. If we look for set bits (the bit argument is 1) and the string is empty or composed of just zero ints, -1 is returned. If we look for clear bits (the bit argument is 0) and the string only contains bit set to 1, the function returns the first bit not part of the string on the right. So if the string is three ints set to the value 0xff the command BITPOS key 0 will return 24, since up to bit 23 all the bits are 1. Basically, the function considers the right of the string as padded with zeros if you look for clear bits and specify no range or the start argument only. However, this behavior changes if you are looking for clear bits and specify a range with both start and end. If no clear bit is found in the specified range, the function returns -1 as the user specified a clear range and there are no 0 bits in that range.
    • bitopAnd

      io.smallrye.mutiny.Uni<Long> 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 key
      keys - the keys
      Returns:
      The size of the string stored in the destination key, that is equal to the size of the longest input string.
    • bitopNot

      io.smallrye.mutiny.Uni<Long> 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 key
      source - the source key
      Returns:
      The size of the string stored in the destination key, that is equal to the size of the longest input string.
    • bitopOr

      io.smallrye.mutiny.Uni<Long> 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 key
      keys - the keys
      Returns:
      The size of the string stored in the destination key, that is equal to the size of the longest input string.
    • bitopXor

      io.smallrye.mutiny.Uni<Long> 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 key
      keys - the keys
      Returns:
      The size of the string stored in the destination key, that is equal to the size of the longest input string.
    • setbit

      io.smallrye.mutiny.Uni<Integer> 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 offset
      value - the value (O or 1)
      Returns:
      the original bit value stored at offset, 0 or 1.