学习路线指引(点击解锁) | 知识定位 | 人群定位 |
---|---|---|
🧡 Python实战微信订餐小程序 🧡 | 进阶级 | 本课程是python flask+微信小程序的完美结合,从项目搭建到腾讯云部署上线,打造一个全栈订餐系统。 |
💛Python量化交易实战💛 | 入门级 | 手把手带你打造一个易扩展、更安全、效率更高的量化交易系统 |
hyperf/elasticsearch 主要为 elasticsearch-php 进行了客户端对象创建的工厂类封装,elasticsearch-php 默认使用 Guzzle Ring 客户端,在 hyperf/guzzle 中我们实现了协程版本的 Handler,所以可以直接使用 Hyperf\Elasticsearch\ClientBuilderFactory 创建一个新的 Builder。
composer require hyperf/elasticsearch
class ElasticsearchService
{
protected $container;
protected Client $es\_client;
public function \_initialize(): void
{
$this->container = ApplicationContext::getContainer();
$client\_builder = $this->container->get(ClientBuilderFactory::class);
$builder = $client\_builder->create();
$host = [
'https://账号:密码@地址:9200