Skip to content

Redis bitmap commands (6/6 implemented)

BITCOUNT

Counts the number of set bits (population counting) in a string.

BITFIELD

Performs arbitrary bitfield integer operations on strings.

BITOP

Performs bitwise operations on multiple strings, and stores the result.

BITPOS

Finds the first set (1) or clear (0) bit in a string.

GETBIT

Returns a bit value by offset.

SETBIT

Sets or clears the bit at offset of the string value. Creates the key if it doesn't exist.