SDK
SDK Javascript v6.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.

zincrby #

Increments the score of a sorted set member by the provided value.

[Redis documentation]

Arguments #

Copied to clipboard!
zincrby(key, member, increment, [options]);

Arguments Type Description
key
string
Sorted set key
member
string
Member value
increment
integer
Increment to apply to the member's score
options
object
Optional query arguments

options #

The options arguments can contain the following option properties:

Property Type (default) Description
queuable
boolean (true)
If true, queues the request during downtime, until connected to Kuzzle again

Resolve #

Resolves to the updated member's score.

Usage #

Copied to clipboard!
try {
  await kuzzle.ms.zadd('ssetfoo', [
    {member: 'foo', score: '42'},
    {member: 'bar', score: '4'},
    {member: 'baz', score: '-272.15'}
  ]);
  await kuzzle.ms.zincrby('ssetfoo', 'bar', 1333);
  // Prints:
  // [ { member: 'baz', score: -272.15 },
  //   { member: 'foo', score: 42 },
  //   { member: 'bar', score: 1337 } ]
  console.log(await kuzzle.ms.zrange('ssetfoo', 0, -1));
} catch (error) {
  console.error(error.message);
}