Home
last modified time | relevance | path

Searched refs:scroll_id (Results 1 – 9 of 9) sorted by relevance

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DClearScroll.php30 protected $scroll_id; variable in Elasticsearch\\Endpoints\\ClearScroll
34 $scroll_id = $this->scroll_id ?? null;
35 if (isset($scroll_id)) {
39 if (isset($scroll_id)) {
40 return "/_search/scroll/$scroll_id";
67 public function setScrollId($scroll_id): ClearScroll argument
69 if (isset($scroll_id) !== true) {
72 if (is_array($scroll_id) === true) {
73 $scroll_id
[all...]
H A DScroll.php30 protected $scroll_id; variable in Elasticsearch\\Endpoints\\Scroll
34 $scroll_id = $this->scroll_id ?? null;
35 if (isset($scroll_id)) {
39 if (isset($scroll_id)) {
40 return "/_search/scroll/$scroll_id";
49 'scroll_id',
69 public function setScrollId($scroll_id): Scroll argument
71 if (isset($scroll_id) !== true) {
74 $this->scroll_id
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Helper/Iterators/
H A DSearchResponseIterator.php50 private $scroll_id; variable in Elasticsearch\\Helper\\Iterators\\SearchResponseIterator
95 * Clears the current scroll window if there is a scroll_id stored
101 if (!empty($this->scroll_id)) {
105 'scroll_id' => $this->scroll_id
112 $this->scroll_id = null;
127 $this->scroll_id = $this->current_scrolled_response['_scroll_id'];
131 * Fetches every "page" after the first one using the lastest "scroll_id"
141 'scroll_id' => $this->scroll_id,
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dsearch-operations.asciidoc247 `scroll` enabled. This returns a "page" of documents, and a `scroll_id` which is
271 // and a scroll_id
281 // When done, get the new scroll_id
283 $scroll_id = $response['_scroll_id'];
288 'scroll_id' => $scroll_id, //...using our previously obtained _scroll_id
H A Drelease-notes.asciidoc45 * Update search iterators to send `scroll_id` inside the request body
139 * Moved `scroll_id` into `body` for search operations in the documentation
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClient.php352 * $params['scroll_id'] = DEPRECATED (list) A comma-separated list of scroll IDs to clear
353 * $params['body'] = (array) A comma-separated list of scroll IDs to clear if none was specified via the scroll_id parameter
361 $scroll_id = $this->extractArgument($params, 'scroll_id');
367 $endpoint->setScrollId($scroll_id);
1276 * $params['scroll_id'] = DEPRECATED (string) The scroll ID
1287 $scroll_id = $this->extractArgument($params, 'scroll_id');
1293 $endpoint->setScrollId($scroll_id);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc129 $params['scroll_id'] = DEPRECATED (list) A comma-separated list of scroll IDs to clear
130 $params['body'] = (array) A comma-separated list of scroll IDs to clear if none was specified via the scroll_id parameter
717 $params['scroll_id'] = DEPRECATED (string) The scroll ID
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md65 - Moved `scroll_id` into `body` for search operations in the documentation
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md564 - Send the `scroll_id` inside a json body instead of plain text [#1325](https://github.com/ruflin/Elastica/pull/1325)
1488 - Always send scroll_id via HTTP body instead of as a query param