Method |
Description |
|
create ( string $indexName ) |
|
|
delete ( string $indexName ) |
|
|
deleteType ( string $indexName, string $type ) |
|
|
exists ( string $indexName ) : boolean |
|
|
existsType ( string $indexName, string $type ) : boolean |
|
|
get ( string $indexName ) : array |
|
|
getRegistered ( string $indexName ) : AbstractIndex |
Get a registered index. When not found it will throw an exception. |
|
getType ( string $indexName, string $type ) : array |
|
|
indices ( ) : mixed |
|
|
isRegistered ( string $indexName ) : boolean |
|
|
register ( AbstractIndex $index ) : AbstractIndex |
|
|
registerIndices ( array $indices ) |
|
|
registeredIndices ( ) : array |
|
|
unregister ( string $indexName ) : AbstractIndex |
|
|
update ( string $indexName ) |
Update the index and all its types. This should be used when wanting to reflect changes
in the Index object with the elasticsearch server. |
|