R64.SETFULL
Category | Description |
---|---|
Syntax | R64.SETFULL key |
Time complexity | O(N) |
Supports structures | Bitmap64 |
Command description | Fill 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.