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

hstrlen #

Returns the string length of a field’s value in a hash.

[Redis documentation]


hstrlen(key, field, [options], callback) #

ArgumentsTypeDescription
keystringKey identifier
fieldstringHash field name
optionsJSON ObjectOptional parameters
callbackfunctionCallback

Options #

OptionTypeDescriptionDefault
queuablebooleanMake this request queuable or nottrue

Callback Response #

Returns the string length of a field's value.

Usage #

// Using callbacks (NodeJS or Web Browser)
kuzzle.memoryStorage.hstrlen('key', 'field', function (err, length) {
  // callback called once the action has completed
});
// Using promises (NodeJS only)
kuzzle.memoryStorage.hstrlenPromise('key', 'field')
  .then(length => {
    // resolved once the action has completed
  });

Callback response:

3