Core
API v2.x
2

incrbyfloat #

Increments the number stored at key by the provided float value. If the key does not exist, it is set to 0 before performing the operation.

[Redis documentation]


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/ms/_incrbyfloat/<_id>
Method: POST
Body:
Copied to clipboard!
{
  "value": <increment float value>
}

Other protocols #

Copied to clipboard!
{
  "controller": "ms",
  "action": "incrbyfloat",
  "_id": "<key>",
  "body": {
    "value": <increment float value>
  }
}

Arguments #

  • _id: key identifier

Body properties #

  • value: the float value to add to the key value

Response #

Returns the incremented float value.

Copied to clipboard!
{
  "requestId": "<unique request identifier>",
  "status": 200,
  "error": null,
  "controller": "ms",
  "action": "incrbyfloat",
  "collection": null,
  "index": null,
  "result": "3.1415"
}