我正在尝试使用FOSElastica Bundle进行全局索引搜索返回高亮显示。
我的配置(yml文件)中有一个全局索引查找器:
fos_elastica:
clients:
default: { host: %elastic_host%, port: %elastic_port% }
indexes:
myIndex:
client: default
finder: ~
types:
# different types here
我根据文档(here)使用它:
$finder = $this->container->get('fos_elastica.finder.myIndex');
// Returns a mixed array of any objects mapped
$results = $finder->find('whatever');
完美无缺,并返回预期结果。 现在我想突出显示结果中的单词,例如使用ES的快速矢量荧光笔。但我没有找到任何示例或任何文档来这样做。
我想我需要用以下内容定义更合适的\ Query对象:
$query = new \Elastica\Query();
$query->setHighlights(array("whatever"));
$query->setTerm("whatever");
$results = $finder->find($query);
但我找不到任何信息。任何提示?
非常感谢!!
答案 0 :(得分:5)
首先在JSON中编写查询:
{
"query" : {
"match" : {
"content" : "this is a test"
}
},
"highlight" : {
"fields" : {
"content" : {}
}
}
}
当它工作时,翻译成Elastica:
$matchQuery = new \Elastica\Query\Match();
$matchQuery->setField('content', 'this is a test');
$searchQuery = new \Elastica\Query();
$searchQuery->setQuery($matchQuery);
$searchQuery->setHighlight(array(
"fields" => array("content" => new \stdObject())
));
答案 1 :(得分:0)
上面的代码对我不起作用,但将\stdObject()
更改为\stdClass()
这完美! (参见https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/62061993640d0894d512587a0cda10ca7eb13c28/Resources/doc/cookbook/attachments.md)
$searchQuery = new \Elastica\Query('This is a test');
$searchQuery->setFields(["content"]);
$searchQuery->setHighlight(array(
"fields" => array("content" => new \stdClass())
));