Core
API v1.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

zlexcount #

Counts elements in a sorted set where all members have equal score, using lexicographical ordering.

[Redis documentation]


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/ms/_zlexcount/<_id>?min=<min value>&max=<max value>
Method: GET

Other protocols #

Copied to clipboard!
{
  "controller": "ms",
  "action": "zlexcount",
  "_id": "<key>",
  "min": "<min value>",
  "max": "<max value>"
}

Arguments #

  • _id: sorted set identifier
  • min: range minimum value
  • max: range maximum value

The min and max values are inclusive by default. To change this behavior, check the syntax detailed in the Redis documentation.


Response #

Returns the number of elements in the sorted set included in the provided range.

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