Method |
Description |
|
bulkIndex ( string $indexName, string $type, array $data ) |
Index a set of documents. |
|
delete ( string $indexName, string $type, string $id ) : array |
|
|
deleteByQuery ( AbstractQuery $query ) : array |
|
|
exists ( string $indexName, string $type, string $id ) : boolean |
|
|
get ( string $indexName, string $type, string $id ) : array |
|
|
index ( string $indexName, string $type, array $data ) : array |
Create a document. |
|
update ( string $indexName, string $type, string $id, array $data ) : array |
Partial updating of an existing document. |
|
updateOrIndex ( string $indexName, string $type, string $id, array $data ) : array |
Update a document. Create it if it doesn't exist. |
|