gpt4 book ai didi

elasticsearch - 是否可以仅突出显示match_phrase查询?

转载 作者:行者123 更新时间:2023-12-02 23:01:36 27 4
gpt4 key购买 nike

我有这样的 bool(boolean) 查询

{
"query": {
"bool": {
"must": [
{
"terms": {
"type": [
"bill",
"press release"
]
}
},
{
"match_phrase": {
"title": "health"
}
}
]
}
},
"highlight": {
"fields": {
"policy_content": {}
}
},
"sort": [
{
"publishdate": {
"order": "desc"
}
}
]
}

用户正在搜索关键字“健康”,关键字被突出显示,但是“帐单”和“新闻稿”也被突出显示,这是我不希望的。
我应该如何解决这个问题?

最佳答案

您可以通过highlight_query指定用于突出显示的查询。

因此,您可以通过将查询的突出显示部分更新为以下内容来利用这一点:

"highlight" : {
"fields" : {
"policy_content" : {
"highlight_query" : {
"match_phrase" : {
"policy_content" : "health"
}
}
}
}
}

关于elasticsearch - 是否可以仅突出显示match_phrase查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33288915/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com