ping #
Pings the memory storage database.
ping([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 a simple "PONG" string.
Usage #
<?php
use \Kuzzle\Kuzzle;
$kuzzle = new Kuzzle('localhost');
try {
$ping = $kuzzle->memoryStorage()->ping();
}
catch (ErrorException $e) {
}
Callback response:
"PONG"
Edit this page on Github(opens new window)