SDK
SDK Javascript v7.x
2

sinter #

Returns the intersection of the provided sets of unique values.

[Redis documentation]

Arguments #

Copied to clipboard!
sinter(keys, [options]);

Arguments Type Description
keys
string[]
List of set keys to intersect
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 intersected values.

Usage #

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