R64.APPENDINTARRAY
Category | Description |
---|---|
Syntax | R64.APPENDINTARRAY key value [value1 value2 ... valueN] |
Time complexity | O(C) |
Supports structures | Bitmap64 |
Command description | Sets the value of the specified bit in a Roaring key to 1. You can specify multiple bit values. |
Parameter
- key: The name of the Roaring bitmap key.
- value: The integer offset of the bit that you want to process. Valid values: 0 to 4294967296.
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.APPENDINTARRAY foo 1 3
OK