Skip to content

R64.SETFULL

CategoryDescription
SyntaxR64.SETFULL key
Time complexityO(N)
Supports structuresBitmap64
Command descriptionFill up a roaring bitmap in integer.

Parameter

  • key: The name of the Roaring bitmap key.

Output

  • If the operation is successful, OK is returned.
  • Otherwise, an error message is returned.

Examples

Basic Usage

$ redis-cli
127.0.0.1:6379> R64.SETFULL foo
OK
127.0.0.1:6379> R64.BITCOUNT foo
"18446744073709551615"

Usage Notes

  • ⚠️ This command can/will consume significant memory and should be used with caution in production environments.