INCRBY
Synopsis
INCRBY key delta
This command adds delta
to the number that is associated with the given key
. The numeric value must a 64-bit signed integer.
Return value
Returns the value after addition.
Examples
$ SET yugakey 7
"OK"
$ INCRBY yugakey 3
10