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.

mset #

Sets the provided keys to their respective values. If a key does not exist, it is created. Otherwise, the key's value is overwritten.

[Redis documentation]

Arguments #

Copied to clipboard!
mset(entries, [options]);

Arguments Type Description
entries
object[]
List of key-value pairs to set
options
object
Optional query arguments

entries #

The entries argument is an array of objects. Each object is a key-value pair, defined with the following properties:

Property Type Description
key
string
Key
value
*
Value

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 successfully once the keys are set.

Usage #

Copied to clipboard!
try {
  // Prints: 0
  console.log(await kuzzle.ms.exists(['key1', 'key2', 'key3']));
  await kuzzle.ms.mset([
    { key: 'key1', value: 'val1' },
    { key: 'key2', value: 'val2' },
    { key: 'key3', value: 'val3' }
  ]);
  // Prints: 3
  console.log(await kuzzle.ms.exists(['key1', 'key2', 'key3']));
} catch (error) {
  console.error(error.message);
}