扩展elasticsearch 的 组队 官网上好像并没有这个文档。找了一下有大佬补充的
在此感谢大佬
composer require limingxinleo/swoft-elasticsearch
请注意elasticsearch 文件位置。
// 每一个ES服务地址,是一个数组,支持配置详细的连接信息 $hosts = [ // 等价连接地址: "https://username:password!#$?*abc@foo.com:9200/elastic" [ 'host' => '127.0.0.1', // 域名 'port' => '9200', // 端口 'scheme' => 'http', // 协议 'user' => 'elastic', // 账号 'pass' => 'mingduhu' // 密码 ] // 等价连接地址 "http://localhost:9200/" 二选一 //[ //'host' => '127.0.0.1:9200', // 仅配置域名 //] ];
获得结果美滋滋
//带分页的查询
public function GoodsDetailTest($keywords, $page){ $page = $page ? intval($page) * 20 : 0; $handler = new CoroutineHandler([ 'timeout' => 3 ]); // 每一个ES服务地址,是一个数组,支持配置详细的连接信息 $hosts = [ [ 'host' => '127.0.0.1', // 域名 'port' => '9200', // 端口 'scheme' => 'http', // 协议 'user' => 'elastic', // 账号 'pass' => 'mingduhui@1888' // 密码 ] ]; $client = ClientBuilder::create() ->setHosts($hosts) ->setHandler($handler) ->build(); $params = [ 'index' => 'mdhsystem', 'type' => 'goods', 'body' => [ 'size' => 20, 'from' => $page, 'query' => [ 'match' => [ 'title' => $keywords ] ] ], 'client' => [ 'ignore' => 404 ] ]; $res = $client->search($params); return $res; }
如何在swoft 上面操作 elasticsearch 是同elasticsearch官方api同步的。
传送门 : https://www.elastic.co/guide/cn/elasticsearch/php/current/_per_request_configuration.html