Resource for managing Yokozuna Indexes over HTTP.
Available operations:
GET /search/index
Get information about every index in JSON format. Currently the same information as /search/index/Index, but as an array of JSON objects.
GET /search/index/Index
{
"name" : IndexName,
"schema": SchemaName
}
IndexName is the same value passed into the URL.
Schema is the name of the schema associate with this
index. That schema file must already be installed on the server.
Defaults to "_yz_default".
PUT /search/index/Index
Creates a new index with the given name.
A PUT request requires this header:
Content-Type: application/json
{ "schema" : SchemaName,
"n_val" : N}If no schema is given, it defaults to "_yz_default".
DELETE /search/index/Index
Generated by EDoc