有没有办法根据类型在同一字段上boost
搜索结果?
我的基本提升是这样的:
GET _search
{
"query": {
"simple_query_string": {
"query": "mangan",
"fields":["_all", "title^6"]
}
}
}
但是对于其他一些文档,我希望标题不那么重要,所以我尝试用类型作为前缀:
GET _search
{
"query": {
"simple_query_string": {
"query": "mangan",
"fields":[
"_all",
"DocumentationPage.title^6",
"DocumentationPage.title^6"]
}
}
}
但是它根本没有提升。作为最后的手段,我可以使用功能/脚本分数 bu 想避免它。
例如,假设文档只包含title
字段。
实现此目的的一种简单方法是将 OP 中的查询重写为 dis-max 查询。
elasticsearch 5.x 的示例:
{
"query": {
"dis_max": {
"queries": [
{
"simple_query_string": {
"fields": [
"_all"
],
"query": "mangan"
}
},
{
"bool": {
"filter": {
"type": {
"value": "DocumentationPage"
}
},
"must": [
{
"simple_query_string": {
"fields": [
"title^6"
],
"query": "mangan"
}
}
]
}
}
]
}
}
}