DECR
Syntax
DECR key
Module
genericCategories
fast writeDescription
Decrements the number stored at key by one. 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 cannot be represented as integer. This operation is limited to 64 bit signed integers.
Examples
- Go (Embedded)
- CLI
Decrement the value of the key mykey
:
db, err := sugardb.NewSugarDB()
if err != nil {
log.Fatal(err)
}
value, err := db.Decr("mykey")
Decrement the value of the key mykey
:
> DECR mykey