【发布时间】:2019-02-19 04:28:39
【问题描述】:
我想知道为什么使用突出显示时处理时间会增加。有办法优化吗?
下面提到了一个示例查询:
{
"from": 30,
"size": 60,
"query": {
"bool": {
"must": {
"multi_match": {
"query": "shall have the right",
"fields": ["subType", "title", "type", "content"],
"fuzziness": 1
}
}
}
},
"highlight": {
"type": "unified",
"fields": {
"*": {}
}
}
}
【问题讨论】:
-
你有没有机会看看我的答案,已经有大约 1.5 年的时间了,如果你还有其他问题,请告诉我。
标签: elasticsearch highlight elasticsearch-query