X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/b882056c93f3e3afe5fde9d62fb569ce30a76a76..df278b8b0b4bd54b83840d4a151e538c60dc92e9:/doc/SetbitCommand.html diff --git a/doc/SetbitCommand.html b/doc/SetbitCommand.html new file mode 100644 index 00000000..bcec9e22 --- /dev/null +++ b/doc/SetbitCommand.html @@ -0,0 +1,45 @@ + + + +
+ + + +Sets or clears the bit at offset in the string value stored at key.+The bit is either set or cleared depending on value, which can be either 0 or 1. When key does not exist, a new string value is created. The string is grown to make sure it can hold a bit at offset. The offset argument is required to be greater than or equal to 0, and is limited to 232-1 (which limits bitmaps to 512MB). +When the string at key is grown, added bits are set to 0.