Core
API v2.x
2

bitpos #

Returns the position of the first bit set to 1 or 0 in a string, or in a substring.

[Redis documentation]


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/ms/_bitpos/<_id>?bit=[0|1][&start=<integer>&end=<integer>]
Method: GET

Other protocols #

Copied to clipboard!
{
  "controller": "ms",
  "action": "bitpos",
  "_id": "<key>",
  "bit": "[0|1]",
  "start": <integer>,
  "end": <integer>
}

Arguments #

  • _id: key to examine
  • bit: bit to look for. Accepted values: 0, 1

Optional: #

  • start: search starts at the provided offset
  • end: search ends at the provided offset

Response #

Returns the position of the first bit found matching the searched value.

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