dbsize #
Returns the number of keys in the application database.
dbsize([options], callback) #
Arguments | Type | Description |
---|---|---|
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 an integer containing the number of keys in the application database.
Usage #
// Using callbacks (NodeJS or Web Browser)
kuzzle.memoryStorage.dbsize(function (err, count) {
// callback called once the action has completed
});
// Using promises (NodeJS only)
kuzzle.memoryStorage.dbsize()
.then(count => {
// resolved once the action has completed
});
Callback response:
12
Edit this page on Github(opens new window)