Добавьте выделение с помощью пакета ongr-io / ElasticsearchDSL - PullRequest
2 голосов
/ 23 июня 2019

Не могу найти ни одного примера, как добавить 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);

1 Ответ

1 голос
/ 24 июня 2019
 <?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);
...