SDK
SDK Javascript v7.x
2

del #

Deletes a list of keys.

[Redis documentation]

Arguments #

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

Arguments Type Description
keys
string[]
Keys to delete
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 number of deleted keys.

Usage #

Copied to clipboard!
try {
  await kuzzle.ms.set('foo', 'bar');
  // Prints: 1
  console.log(await kuzzle.ms.exists(['foo']));
  await kuzzle.ms.del(['foo']);
  // Prints: 0
  console.log(await kuzzle.ms.exists(['foo']));
  console.log('Success');
} catch (error) {
  console.error(error.message);
}