Home
last modified time | relevance | path

Searched refs:client (Results 376 – 400 of 539) sorted by path

1...<<11121314151617181920>>...22

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A De270f3f721a5712cd11a5ca03554f5b0.asciidoc20 $response = $client->search($params);
H A De30ea6e3823a139d7693d8cce1920a06.asciidoc18 $response = $client->search($params);
H A De4be53736bcc02b03068fd72fdbfe271.asciidoc15 $response = $client->indices()->putMapping($params);
H A De567e6dbf86300142573c73789c8fce4.asciidoc8 $response = $client->search($params);
H A De5d2172b524332196cac0f031c043659.asciidoc16 $response = $client->indices()->create($params);
H A De5f50b31f165462d883ecbff45f74985.asciidoc31 $response = $client->indices()->putTemplate($params);
H A De9c2e15b36372d5281c879d336322b6c.asciidoc19 $response = $client->reindex($params);
H A Deb30ba547e4a7b8f54f33ab259aca523.asciidoc12 $response = $client->update($params);
H A Df085fb032dae56a3b104ab874eaea2ad.asciidoc17 $response = $client->search($params);
H A Df29a28fffa7ec604a33a838f48f7ea79.asciidoc39 $response = $client->search($params);
H A Df2d68493abd3ca430bd03a7f7f8d18f9.asciidoc18 $response = $client->search($params);
H A Df32f0c19b42de3b87dd764fe4ca17e7c.asciidoc16 $response = $client->search($params);
H A Df5569945024b9d664828693705c27c1a.asciidoc8 $response = $client->search($params);
H A Df70a54cd9a9f4811bf962e469f2ca2ea.asciidoc18 $response = $client->search($params);
H A Df8cc4b331a19ff4df8e4a490f906ee69.asciidoc5 $response = $client->cat()->health();
H A Df9636d7ef1a45be4f36418c875cf6bef.asciidoc24 $response = $client->update($params);
H A Dfa2fe60f570bd930d2891778c6efbfe6.asciidoc14 $response = $client->search($params);
H A Dfa88f6f5a7d728ec4f1d05244228cb09.asciidoc22 $response = $client->search($params);
H A Dfabe14480624a99e8ee42c7338672058.asciidoc8 $response = $client->indices()->create($params);
H A Dfdd38f0d248385a444c777e7acd97846.asciidoc19 $response = $client->search($params);
H A Dfeefeb68144002fd1fff57b77b95b85e.asciidoc18 $response = $client->search($params);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dexperimental-beta-apis.asciidoc4 The PHP client offers also `experimental` and `beta` APIs for {es}.
31 $client = ClientBuilder::create()->build();
35 $result = $client->rankEval($params);
42 $client = ClientBuilder::create()->build();
46 $result = $client->scriptsPainlessExecute($params);
55 $client = ClientBuilder::create()->build();
57 $result = $client->getScriptContext();
66 $client = ClientBuilder::create()->build();
68 $result = $client->getScriptLanguages();
H A Dfutures.asciidoc4 The client offers a mode called "future" or "async" mode. This allows batch
20 simultaneously, which means the Elasticsearch-PHP client can more effectively
29 the client options to `'lazy'`:
33 $client = ClientBuilder::create()->build();
38 'client' => [
43 $future = $client->get($params);
65 $client = ClientBuilder::create()->build();
70 'client' => [
75 $future = $client->get($params);
86 $client
[all...]
H A Dhelpers.asciidoc1 [[client-helpers]]
4 The client comes with helpers to give you a more comfortable experience with
37 // $client is Elasticsearch\Client instance
38 $pages = new SearchResponseIterator($client, $search_params);
74 // $client is Elasticsearch\Client instance
75 $pages = new SearchResponseIterator($client, $search_params);
H A Dhost-config.asciidoc4 The client offers two options to configure hosts:
14 The most common configuration is telling the client about your cluster: the
16 client attempts to connect to `localhost:9200`.
33 $client = ClientBuilder::create() // Instantiate a new ClientBuilder
35 ->build(); // Build the client object
53 $client = $clientBuilder->build(); // Build the client object
61 The client also supports an _extended_ host configuration syntax. The inline
70 For this reason, the client supports an extended host syntax which provides
96 $client
[all...]

1...<<11121314151617181920>>...22