Arguments
str
required
The key to decrement.
Response
The value at the key after the decrementing.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
redis.set("key", 6)
assert redis.decr("key") == 5
Decrement the integer value of a key by one
redis.set("key", 6)
assert redis.decr("key") == 5
Was this page helpful?