Lines Matching refs:index

46  * Elastica index object.
48 * Handles reads, deletes and configurations of an index
70 * Creates a new index object.
72 * All the communication to and from an index goes of this object
104 * Sets the mappings for the current index.
115 * Gets all mappings for the current index.
129 // Get first entry as if index is an Alias, the name of the mapping is the real name and not alias name
136 * Returns the index settings object.
209 * Adds the given document to the search index.
283 * Get the document from search index.
368 * Opens a Point-in-Time on the index.
385 * Deletes the index.
419 * Force merges index.
440 * Refreshes the index.
454 * Creates a new index with the given arguments.
456 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-create-index.html
460 * bool=> Deletes index first if already exists (default = false).
514 * Checks if the given index exists ans is created.
560 * Opens an index.
574 * Closes the index.
588 * Returns the index name.
596 * Returns index client.
604 * Adds an alias to the current index.
620 foreach ($status->getIndicesWithAlias($name) as $index) {
621 $data['actions'][] = ['remove' => ['index' => $index->getName(), 'alias' => $name]];
625 $data['actions'][] = ['add' => ['index' => $this->getName(), 'alias' => $name]];
635 * Removes an alias pointing to the current index.
653 * Returns all index aliases.
682 * Checks if the index has the given alias.
690 * Clears the cache of an index.
708 * Flushes the index to storage.
745 * Makes calls to the elasticsearch server based on this index.
763 * Makes calls to the elasticsearch server with usage official client Endpoint based on this index.
778 * Run the analysis on the index.