hstrlen #
Returns the string length of a field’s value in a hash.
hstrlen(key, field, [options], callback) #
Arguments | Type | Description |
---|---|---|
key | string | Key identifier |
field | string | Hash field name |
options | JSON Object | Optional parameters |
callback | function | Callback |
Options #
Option | Type | Description | Default |
---|---|---|---|
queuable | boolean | Make this request queuable or not | true |
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
Edit this page on Github(opens new window)