Lines Matching refs:Elasticsearch

8 Official low-level client for Elasticsearch. Its goal is to provide common ground for all Elasticsearch-related code in PHP; because of this it tries to be opinion-free and very extendable.
12 Starting from version `7.4.0`, all the endpoints (and namespaces) are autogenerated using the [util/GenerateEndpoints.php](https://github.com/elastic/elasticsearch-php/blob/master/util/GenerateEndpoints.php) script. This script reads the [Elasticsearch API specs](https://github.com/elastic/elasticsearch/tree/master/rest-api-spec/src/main/resources/rest-api-spec/api) and generated the PHP classes for all the endpoints.
14 Starting from version `7.7.0` we included also the [XPack endpoints](https://www.elastic.co/what-is/open-x-pack) of Elasticsearch.
73 | Elasticsearch-PHP Branch | PHP Version |
84 - If you are using Elasticsearch 7.x, you can use Elasticsearch-PHP 7.x branch.
85 - If you are using Elasticsearch 6.x, you can use Elasticsearch-PHP 6.x branch.
86 - If you are using Elasticsearch 5.x, you can use Elasticsearch-PHP 6.x branch.
87 - If you are using Elasticsearch 1.x or 2.x, prefer using the Elasticsearch-PHP 2.0 branch. The 1.0 branch is compatible however.
88 - If you are using a version older than 1.0, you must install the `0.4` Elasticsearch-PHP branch. Since ES 0.90.x and below is now EOL, the corresponding `0.4` branch will not receive any more development or bugfixes. Please upgrade.
89 - You should never use Elasticsearch-PHP Master branch, as it tracks Elasticsearch master and may contain incomplete features or breaks in backwards compatibility. Only use ES-PHP master if you are developing against ES master for some reason.
95 with greater minor versions of Elasticsearch. Elastic language clients are also backwards
96 compatible with lesser supported minor Elasticsearch versions.
109 1. Add `elasticsearch/elasticsearch` as a dependency in your project's `composer.json` file (change version to suit your version of Elasticsearch, for instance for ES 7.0):
138 use Elasticsearch\ClientBuilder;
152 | Elasticsearch-PHP Branch | PHP Version |
185 associative array containing a decoded version of the JSON that Elasticsearch returns:
222 that you sent to Elasticsearch.
265 Searching is a hallmark of Elasticsearch, so let's perform a search. We are going to use the Match query as a demonstration:
371 Due to the dynamic nature of Elasticsearch, the first document we added automatically built an index with some default settings. Let's delete that index because we want to specify our own settings later:
410 Elasticsearch will now create that index with your chosen settings, and return an acknowledgement:
423 use Elasticsearch\ClientBuilder;
455 That was just a crash-course overview of the client and its syntax. If you are familiar with Elasticsearch, you'll notice that the methods are named just like REST endpoints.
465 Starting with version 1.3.1, Elasticsearch-PHP is available under two licenses: Apache v2.0 and LGPL v2.1. Versions
476 >Copyright 2013-2016 Elasticsearch
491 >Copyright (C) 2013-2016 Elasticsearch