We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1df0c2f commit f53b714Copy full SHA for f53b714
commands/decrby.md
@@ -1,8 +1,7 @@
1
-Decrements the number stored at `key` by `decrement`.
2
-If the key does not exist, it is set to `0` before performing the operation.
3
-An error is returned if the key contains a value of the wrong type or contains a
4
-string that can not be represented as integer.
5
-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.
6
7
See `INCR` for extra information on increment/decrement operations.
8
0 commit comments