SDK
SDK Android v3.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 #

kuzzle.memoryStorage.hstrlen("key", "field", new ResponseListener<Long>() {
  @Override
  public void onSuccess(int length) {
    // callback called once the action has completed
  }
  @Override
  public void onError(JSONObject error) {
  }
});

Callback response:

3