mirror of
https://github.com/EchoVault/SugarDB.git
synced 2025-10-07 08:50:59 +08:00
Removed keyspace category for INCRBYFLOAT command
This commit is contained in:
@@ -887,11 +887,10 @@ An error is returned if the key contains a value of the wrong type or contains a
|
|||||||
KeyExtractionFunc: incrByKeyFunc,
|
KeyExtractionFunc: incrByKeyFunc,
|
||||||
HandlerFunc: handleIncrBy,
|
HandlerFunc: handleIncrBy,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
Command: "incrbyfloat",
|
Command: "incrbyfloat",
|
||||||
Module: constants.GenericModule,
|
Module: constants.GenericModule,
|
||||||
Categories: []string{constants.KeyspaceCategory, constants.WriteCategory, constants.FastCategory},
|
Categories: []string{constants.WriteCategory, constants.FastCategory},
|
||||||
Description: `(INCRBYFLOAT key increment)
|
Description: `(INCRBYFLOAT key increment)
|
||||||
Increments the number stored at key by increment. If the key does not exist, it is set to 0 before performing the operation.
|
Increments the number stored at key by increment. 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 float.`,
|
An error is returned if the key contains a value of the wrong type or contains a string that cannot be represented as float.`,
|
||||||
|
Reference in New Issue
Block a user