Searched refs:scroll_id (Results 1 – 9 of 9) sorted by relevance
30 protected $scroll_id; variable in Elasticsearch\\Endpoints\\ClearScroll34 $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 argument69 if (isset($scroll_id) !== true) {72 if (is_array($scroll_id) === true) {73 $scroll_id = implode(",", $scroll_id);75 $this->scroll_id = $scroll_id;
30 protected $scroll_id; variable in Elasticsearch\\Endpoints\\Scroll34 $scroll_id = $this->scroll_id ?? null;35 if (isset($scroll_id)) {39 if (isset($scroll_id)) {40 return "/_search/scroll/$scroll_id";69 public function setScrollId($scroll_id): Scroll argument71 if (isset($scroll_id) !== true) {74 $this->scroll_id = $scroll_id;
50 private $scroll_id; variable in Elasticsearch\\Helper\\Iterators\\SearchResponseIterator101 if (!empty($this->scroll_id)) {105 'scroll_id' => $this->scroll_id112 $this->scroll_id = null;127 $this->scroll_id = $this->current_scrolled_response['_scroll_id'];141 'scroll_id' => $this->scroll_id,146 $this->scroll_id = $this->current_scrolled_response['_scroll_id'];
247 `scroll` enabled. This returns a "page" of documents, and a `scroll_id` which is 271 // and a scroll_id281 // When done, get the new scroll_id283 $scroll_id = $response['_scroll_id'];288 'scroll_id' => $scroll_id, //...using our previously obtained _scroll_id
45 * Update search iterators to send `scroll_id` inside the request body139 * Moved `scroll_id` into `body` for search operations in the documentation
361 $scroll_id = $this->extractArgument($params, 'scroll_id');367 $endpoint->setScrollId($scroll_id);1287 $scroll_id = $this->extractArgument($params, 'scroll_id');1293 $endpoint->setScrollId($scroll_id);
129 $params['scroll_id'] = DEPRECATED (list) A comma-separated list of scroll IDs to clear130 …ay) A comma-separated list of scroll IDs to clear if none was specified via the scroll_id parameter717 $params['scroll_id'] = DEPRECATED (string) The scroll ID
65 - Moved `scroll_id` into `body` for search operations in the documentation
564 - Send the `scroll_id` inside a json body instead of plain text [#1325](https://github.com/ruflin/E…1488 - Always send scroll_id via HTTP body instead of as a query param