X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/43f30ac0f9bcc4a7afb06136a8dfe5b703be7935..12ebe2ac17a26ecf263f90b2acdf03db29b00223:/doc/IncrCommand.html diff --git a/doc/IncrCommand.html b/doc/IncrCommand.html index b2b35499..5479e5f9 100644 --- a/doc/IncrCommand.html +++ b/doc/IncrCommand.html @@ -33,8 +33,7 @@ Time complexity: O(1)
Increment or decrement the number stored at key by one. If the key doesnot exist or contains a value of a wrong type, set the key to thevalue of "0" before to perform the increment or decrement operation.
INCRBY and DECRBY work just like INCR and DECR but instead toincrement/decrement by 1 the increment/decrement is integer.
INCR commands are limited to 64 bit signed integers.-