找不到任何示例,如何使用higlight将https://github.com/ongr-io/ElasticsearchDSL添加到查询结果中
<?php
require 'vendor/autoload.php'; //Composer autoload
$client = ClientBuilder::create()->build(); //elasticsearch-php client
$matchAll = new ONGR\ElasticsearchDSL\Query\MatchAllQuery();
$search = new ONGR\ElasticsearchDSL\Search();
$search->addQuery($matchAll);
//How to highlight results in title field?
$params = [
'index' => 'your_index',
'body' => $search->toArray(),
];
$results = $client->search($params);
答案 0 :(得分:1)
<?php
require 'vendor/autoload.php'; //Composer autoload
$client = ClientBuilder::create()->build(); //elasticsearch-php client
$matchAll = new ONGR\ElasticsearchDSL\Query\MatchAllQuery();
$search = new ONGR\ElasticsearchDSL\Search();
$search->addQuery($matchAll);
$higlight = new Highlight();
$higlight->addField('title');
$search->addHighlight($higlight);
$params = [
'index' => 'your_index',
'body' => $search->toArray(),
];
$results = $client->search($params);