elasticsearch\Command getMapping()

getMapping() public method See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-get-mapping.html. public mixed getMapping ( $index = '_all', $type = null )$index string $type string

elasticsearch\Command getIndexStatus()

getIndexStatus() public method See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-status.html. public mixed getIndexStatus ( $index = '_all' )$index

elasticsearch\Command get()

get() public method Gets a document from the index See also http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html. public mixed get ( $index, $type, $id, $options = [] )$index $type $id $options array

elasticsearch\Command flushIndex()

flushIndex() public method See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-flush.html. public mixed flushIndex ( $index = '_all' )$index

elasticsearch\Command exists()

exists() public method Gets a document from the index See also http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html. public mixed exists ( $index, $type, $id )$index $type $id

elasticsearch\Command deleteTemplate()

deleteTemplate() public method See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-templates.html. public mixed deleteTemplate ( $name )$name

elasticsearch\Command deleteMapping()

deleteMapping() public method See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-put-mapping.html. public mixed deleteMapping ( $index, $type )$index $type

elasticsearch\Command deleteIndex()

deleteIndex() public method Deletes an index See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-delete-index.html. public mixed deleteIndex ( $index )$index

elasticsearch\Command deleteByQuery()

deleteByQuery() public method Sends a request to the delete by query public mixed deleteByQuery ( $options = [] )$options array

elasticsearch\Command deleteAllIndexes()

deleteAllIndexes() public method Deletes all indexes See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-delete-index.html. public mixed deleteAllIndexes ( )