作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在每个字段上使用具有不同权重的多重匹配查询。
我将tie_breaker设置为1以禁用use_dis_max,并使用总和而不是分数的最大值。
GET index_name/index_type/_search?explain
{
"size": 1,
"query": {
"multi_match": {
"query": "ticket",
"fields": ["title^9", "descr^4", "*section_body"],
"tie_breaker": 1
}
}
}
GET index_name/index_type/_search?explain
{
"size": 1,
"query": {
"bool": {
"disable_coord": true,
"should": [
{
"multi_match": {
"query": "ticket",
"fields": ["title^9", "descr^4", "*section_body"],
"tie_breaker": 1
}
}
]
}
}
}
最佳答案
我建议分离should
的各个条件,并分别增强它们。可能看起来像以下内容:
{
"size": 1,
"query": {
"bool": {
"disable_coord": true,
"should": [
{"match" : {"title" : {"query" : "ticket", "boost" : 9}}},
{"match" : {"descr" : {"query" : "ticket", "boost" : 4}}},
{"multi_match" : {
"fields" : ["*section_body"],
"query" : "ticket"
}}
]
}
}
}
disable_coord
为
true
时,每个文档的结果得分都高于设置为
false
时的得分。
关于elasticsearch - Elasticsearch:禁用多匹配查询的协调因子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28503578/
我是一名优秀的程序员,十分优秀!