Home
last modified time | relevance | path

Searched refs:Reindex (Results 1 – 4 of 4) sorted by relevance

/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DAbstractUpdateAction.php324 * @phpstan-param bool|Reindex::REFRESH_* $refresh
331 $refresh = $refresh ? Reindex::REFRESH_TRUE : Reindex::REFRESH_FALSE;
334 return $this->setParam(Reindex::REFRESH, $refresh);
346 return \in_array($refresh, [Reindex::REFRESH_TRUE, Reindex::REFRESH_FALSE], true)
347 ? Reindex::REFRESH_TRUE === $refresh
H A DReindex.php12 class Reindex extends Param
78 $reindexEndpoint = new \Elasticsearch\Endpoints\Reindex();
9 class Reindex extends Param global() class
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DReindex.php22 * Class Reindex
28 class Reindex extends AbstractEndpoint class
56 public function setBody($body): Reindex
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md65 * Deprecated `Elastica\Reindex::WAIT_FOR_COMPLETION_FALSE`, use a boolean as parameter instead by @franmomu [#2070](https://github.com/ruflin/Elastica/pull/2070)
66 * Passing anything else than a boolean as 1st argument to `Reindex::setWaitForCompletion`, pass a boolean instead by @franmomu [#2070](https://github.com/ruflin/Elastica/pull/2070)
271 * Added `Elastica\Reindex->setPipeline(Elastica\Pipeline $pipeline): void`. The link between the reindex and the pipeline is solved when `run()` is called, and thus the pipeline given doesn't need to be created before calling `setPipeline()` [#1752](https://github.com/ruflin/Elastica/pull/1752)
272 * Added `Elastica\Reindex->setRefresh(string $value): void`. It accepts `REFRESH_*` constants from its class [#1752](https://github.com/ruflin/Elastica/pull/1752) and [#1758](https://github.com/ruflin/Elastica/pull/1758)
273 * Added `Elastica\Reindex->setQuery(Elastica\Query\AbstractQuery $query): void` [#1752](https://github.com/ruflin/Elastica/pull/1752)
274 * Added constants `PIPELINE`, `REFRESH_TRUE`, `REFRESH_FALSE`, `REFRESH_WAIT_FOR`, `SLICES` and `SLICES_AUTO` to `Elastica\Reindex` [#1752](https://github.com/ruflin/Elastica/pull/1752)
366 * Elastica\Reindex does not return an Index anymore but a Response.
367 * Elastica\Reindex->run() does not refresh the new Index after completion anymore. Use `$reindex->setParam(Reindex::REFRESH, 'wait_for')` instead.
386 * Elastica\Reindex missin
[all...]