Home
last modified time | relevance | path

Searched refs:search (Results 226 – 250 of 1061) sorted by last modified time

12345678910>>...43

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D6138d6919f3cbaaf61e1092f817d295c.asciidoc17 $response = $client->search($params);
H A D645796e8047967ca4a7635a22a876f4c.asciidoc28 $response = $client->search($params);
H A D67ceac4bf2d9ac7cc500390544cdcb41.asciidoc17 $response = $client->search($params);
H A D68721288dc9ad8aa1b55099b4d303051.asciidoc19 $response = $client->search($params);
H A D6a1702dd50690cae833572e48a0ddf25.asciidoc18 $response = $client->search($params);
H A D6bbc613bd4f9aec1bbdbabf5db021d28.asciidoc30 $response = $client->search($params);
H A D6f21a878fee3b43c5332b81aaddbeac7.asciidoc20 $response = $client->search($params);
H A D75330ec1305d2beb0e2f34d2195464e2.asciidoc14 $response = $client->search($params);
H A D774d715155cd13713e6e327adf6ce328.asciidoc17 $response = $client->search($params);
H A D7b908b1189f076942de8cd497ff1fa59.asciidoc20 $response = $client->search($params);
H A D7f28f8ae8fcdbd807dadde0b5b007a6d.asciidoc25 $response = $client->search($params);
H A D7f56755fb6c42f7e6203339a6d0cb6e6.asciidoc17 $response = $client->search($params);
H A D98b121bf47cebd85671a2cb519688d28.asciidoc29 $response = $client->search($params);
H A D9a8995fd31351045d99c78e40444c8ea.asciidoc16 $response = $client->search($params);
H A Dad0dcbc7fc619e952c8825b8f307b7b2.asciidoc21 $response = $client->search($params);
H A Dcd247f267968aa0927bfdad56852f8f5.asciidoc15 $response = $client->search($params);
H A Dcd5bc5bf7cd58d7b1492c9c298b345f6.asciidoc26 $response = $client->search($params);
H A Dcdedd5f33f7e5f7acde561e97bff61de.asciidoc15 $response = $client->search($params);
H A Dd50a3835bf5795ac73e58906a3413544.asciidoc17 $response = $client->search($params);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Multi/
H A DMultiBuilder.php21 private function buildResultSet(Response $childResponse, BaseSearch $search): BaseResultSet argument
23 return $search->getResultSetBuilder()->buildResultSet($childResponse, $search->getQuery());
42 $search = \current($searches);
46 $resultSets[$key] = $this->buildResultSet(new Response($responseData), $search);
H A DSearch.php11 * Elastica multi search.
15 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html
73 public function addSearch(BaseSearch $search, ?string $key = null): self argument
76 $this->_searches[$key] = $search;
78 $this->_searches[] = $search;
91 foreach ($searches as $key => $search) {
92 $this->addSearch($search, $key);
129 public function search(): ResultSet function in Elastica\\Multi\\Search
147 foreach ($this->getSearches() as $search) {
154 _getSearchData(BaseSearch $search) global() argument
170 _getSearchDataHeader(BaseSearch $search) global() argument
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Helper/Iterators/
H A DSearchResponseIterator.php62 * @see Client::search()
117 * Rewinds the iterator by performing the initial search.
126 $this->current_scrolled_response = $this->client->search($this->params);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DEqlNamespace.php31 * Deletes an async EQL search by ID. If the search is still running, the search request will be cancelled. Otherwise, the saved search results are deleted.
33 * $params['id'] = (string) The async search ID
37 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html
51 * Returns async results from previously executed Event Query Language (EQL) search
53 * $params['id'] = (string) The async search ID
55 * $params['keep_alive'] = (time) Update the time interval in which the results (partial or final) for this search will be available (Default = 5d)
59 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search
105 public function search(array $params = []) global() function in Elasticsearch\\Namespaces\\EqlNamespace
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DScroll.php15 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-scroll.html
51 public function __construct(Search $search, string $expiryTime = '1m')
53 $this->_search = $search;
72 * Next scroll search.
89 $this->_setScrollId($this->_search->search());
119 * Initial scroll search.
133 // initial search
139 $this->_setScrollId($this->_search->search());
145 * Cleares the search context on ES and marks this Scroll instance as finished.
190 * Save all search option
48 __construct(Search $search, string $expiryTime = '1m') global() argument
[all...]
H A DSearch.php16 * Elastica search object.
303 * Creates new search object.
311 * Combines indices to the search request path.
335 public function search($query = '', $options = null, string $method = Request::POST): ResultSet
331 public function search($query = '', $options = null, string $method = Request::POST): ResultSet global() function in Elastica\\Search

12345678910>>...43