Home
last modified time | relevance | path

Searched refs:index (Results 426 – 450 of 1806) sorted by last modified time

1...<<11121314151617181920>>...73

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DCreate.php40 if (isset($this->index) !== true) {
42 'index is required for create'
45 $index = $this->index;
52 return "/$index/$type/$id/_create";
54 return "/$index/_create/$id";
H A DDelete.php40 if (isset($this->index) !== true) {
42 'index is required for delete'
45 $index = $this->index;
52 return "/$index/$type/$id";
54 return "/$index/_doc/$id";
H A DDeleteByQuery.php34 if (isset($this->index) !== true) {
36 'index is required for delete_by_query'
39 $index = $this->index;
46 return "/$index/$type/_delete_by_query";
48 return "/$index/_delete_by_query";
H A DExists.php40 if (isset($this->index) !== true) {
42 'index is required for exists'
45 $index = $this->index;
52 return "/$index/$type/$id";
54 return "/$index/_doc/$id";
H A DBulk.php41 $index = $this->index ?? null;
47 if (isset($index) && isset($type)) {
48 return "/$index/$type/_bulk";
50 if (isset($index)) {
51 return "/$index/_bulk";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Indices/
H A DDeleteAlias.php35 if (isset($this->index) !== true) {
37 'index is required for delete_alias'
40 $index = $this->index;
48 return "/$index/_alias/$name";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dcrud.asciidoc8 When you add documents to {es}, you index JSON documents. This maps naturally to
26 'index' => 'my_index',
32 $response = $client->index($params);
40 'index' => 'my_index',
45 $response = $client->index($params);
50 those in the array alongside the `index`, and others. For example, let's set the
57 'index' => 'my_index',
65 $response = $client->index($params);
75 example, an `index` object), then you create a document body object. This
85 'index'
[all...]
H A Dfutures.asciidoc36 'index' => 'test',
68 'index' => 'test',
91 'index' => 'test',
121 'index' => 'test',
179 'index' => 'test',
206 'index' => 'test',
216 'index' => 'test',
226 $futures['indexRequest'] = $client->index($params); // Second request
229 'index' => 'test',
H A Dnamespaces.asciidoc46 For example, we can requests index stats about a specific index, or multiple
54 $params['index'] = 'my_index';
58 $params['index'] = array('my_index1', 'my_index2');
63 The following example shows how you can add an alias to an existing index:
71 'index' => 'myindex',
82 only requires an index name(s), while the `updateAlias` requires a body of
H A Doperations.asciidoc14 include::index-operations.asciidoc[]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D0a958e486ede3f519d48431ab689eded.asciidoc6 'index' => 'test',
H A D7f697eb436dfa3c30dfe610d8c32d132.asciidoc13 'index' => 'source',
21 'index' => 'dest',
H A D8022e6a690344035b6472a43a9d122e0.asciidoc6 'index' => '_all',
H A Dac544eb247a29ca42aab13826ca88561.asciidoc6 'index' => 'test',
H A Dae9ccfaa146731ab9176df90670db1c2.asciidoc8 'index' => [
H A Dafc29b61c532cf683f749baf013e7bfe.asciidoc6 'index' => 'my_index',
H A Dd4b4cefba4318caeba7480187faf2b13.asciidoc6 'index' => 'my_index',
12 $response = $client->index($params);
H A Dd8b2a88b5eca99d3691ad3cd40266736.asciidoc6 'index' => 'my-index',
H A Dd9474f66970c6955e24b17c7447e7b5f.asciidoc6 'index' => 'my_index',
H A Ddfef545b1e2c247bafd1347e8e807ac1.asciidoc1 // indices/create-index.asciidoc:123
6 'index' => 'test',
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DMigrationNamespace.php31 * Retrieves information about different cluster, node, and index level settings that use deprecated features that will be removed or changed in the next major version.
33 * $params['index'] = (string) Index pattern
41 $index = $this->extractArgument($params, 'index');
46 $endpoint->setIndex($index);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ccr/
H A DFollowStats.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index/_ccr/stats";
H A DForgetFollower.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index/_ccr/forget_follower";
/plugin/elasticsearch/lang/en/
H A Dconfmanager_description.txt1 Elasticsearch can index media files by using external tools/parsers to extract the text content of the files.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClient.php315 * Allows to perform multiple index/update/delete operations in a single request.
317 * $params['index'] = (string) Default index for items which don't provide one
336 $index = $this->extractArgument($params, 'index');
343 $endpoint->setIndex($index);
395 * $params['index'] = (list) A comma-separated list of indices to restrict the results
419 $index = $this->extractArgument($params, 'index');
426 $endpoint->setIndex($index);
905 public function index(array $params = []) global() function in Elasticsearch\\Client
[all...]

1...<<11121314151617181920>>...73