UINCRBY
Syntax
UINCRBY key delta
Description
Increment a 64-bit unsigned integer by delta.
This allows for working with numbers in the range of 0
to 18446744073709551615
.
Example
> SET num 0
> UINCRBY num 10
> UINCRBY num 10
> SET num 18446744073709551604
> UINCRBY num 8
> UINCRBY num 4