Skip to content

Commit

Permalink
fix issues 2591 redis#2591
Browse files Browse the repository at this point in the history
  • Loading branch information
PansonPanson committed Nov 3, 2023
1 parent 1df0c2f commit f53b714
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions commands/decrby.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
Decrements the number stored at `key` by `decrement`.
If the key does not exist, it is set to `0` before performing the operation.
An error is returned if the key contains a value of the wrong type or contains a
string that can not be represented as integer.
This operation is limited to 64 bit signed integers.
The `DECRBY` command reduces the value stored at the specified `key` by the specified `decrement`.
If the key does not exist, it is initialized with a value of `0` before performing the operation.
If the key's value is not of the correct type or cannot be represented as an integer, an error is returned.
This operation is limited to **64-bit** signed integers.

See `INCR` for extra information on increment/decrement operations.

Expand Down

0 comments on commit f53b714

Please sign in to comment.