SDK
SDK Javascript v7.x
2

sdiff #

Returns the difference between a reference set and a list of other sets.

[Redis documentation]

Arguments #

Copied to clipboard!
sdiff(ref, sets, [options]);

Arguments Type Description
ref
string
Set key of reference
sets
string[]
List of sets to compare to the reference
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 an array of differences.

Usage #

Copied to clipboard!
try {
  await kuzzle.ms.sadd('ref', ['foo', 'bar', 'baz']);
  await kuzzle.ms.sadd('set1', ['foo', 'hello']);
  await kuzzle.ms.sadd('set2', ['bar', 'world']);
  // Prints: [ 'baz' ]
  console.log(await kuzzle.ms.sdiff('ref', ['set1', 'set2']));
} catch (error) {
  console.error(error.message);
}