mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-11-30 10:47:44 +08:00
26 lines
888 B
Markdown
26 lines
888 B
Markdown
# Elasticsearch
|
|
|
|
[hyperf/elasticsearch](https://github.com/hyperf/elasticsearch) is a factory for client object creation for [elasticsearch-php](https://github.com/elastic/elasticsearch-php), defaults handler is `Guzzle Ring` client, at [hyperf/guzzle](https://github.com/hyperf/guzzle) we implemented the `Handler` of the coroutine version, so we can create a new `Builder` directly via `Hyperf\Elasticsearch\ClientBuilderFactory`.
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
composer require hyperf/elasticsearch
|
|
```
|
|
## Usage
|
|
|
|
### Create a Client
|
|
|
|
```php
|
|
<?php
|
|
|
|
use Hyperf\Elasticsearch\ClientBuilderFactory;
|
|
|
|
// If created in coroutine environment will use coroutine handler, if created in non-coroutine environment will not change.
|
|
$builder = $this->container->get(ClientBuilderFactory::class)->create();
|
|
|
|
$client = $builder->setHosts(['http://127.0.0.1:9200'])->build();
|
|
|
|
$info = $client->info();
|
|
```
|