SDK
SDK Javascript v5.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. The min and max values are inclusive by default. To change this behavior, please check the syntax detailed in the Redis documentation.

[Redis documentation]


zlexcount(key, min, max, [options], callback) #

ArgumentsTypeDescription
keystringKey identifier
minstringMinimum member value (inclusive by default)
maxstringMaximum member value (inclusive by default)
optionsJSON ObjectOptional parameters
callbackfunctionCallback

Options #

OptionTypeDescriptionDefault
queuablebooleanMake this request queuable or nottrue

Callback Response #

Returns an integer containing the number of elements in the provided lexicographical value range.

Usage #

// Using callbacks (NodeJS or Web Browser)
kuzzle.memoryStorage.zlexcount('key', '[b', '[f' function (err, count) {
  // callback called once the action has completed
});
// Using promises (NodeJS only)
kuzzle.memoryStorage.zlexcountPromise('key', '[b', '[f')
  .then(count => {
    // resolved once the action has completed
  });

Callback response:

2