list #
Get the complete list of indexes handled by Kuzzle.
Signature #
std::vector<std::string> list();
std::vector<std::string> list(const kuzzleio::query_options& options);
Arguments #
Arguments | Type | Description |
---|---|---|
options | kuzzleio::query_options* | Query options |
options #
Additional query options
Option | Type (default) | Description |
---|---|---|
queuable | bool ( true ) | If true, queues the request during downtime, until connected to Kuzzle again |
Return #
A vector of string containing the list of indexes present in Kuzzle
Exceptions #
Throws a kuzzleio::KuzzleException
if there is an error. See how to handle error.
Usage #
try {
std::vector<std::string> indexes = kuzzle->index->list();
std::cout << "Kuzzle contains " << indexes.size() << " indexes" << std::endl;
} catch (kuzzleio::KuzzleException &e) {
std::cerr << e.what() << std::endl;
}
Edit this page on Github(opens new window)