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 #
<?php
use \Kuzzle\Kuzzle;
$kuzzle = new Kuzzle('localhost');
try {
$count = $kuzzle->memoryStorage()->dbsize();
}
catch (ErrorException $e) {
}
Callback response:
12
Edit this page on Github(opens new window)