原英文版地址: https://www.elastic.co/guide/en/elasticsearch/reference/7.7/query-dsl-boosting-query.html, 原文档版权归 www.elastic.co 所有
本地英文版地址: ../en/query-dsl-boosting-query.html
本地英文版地址: ../en/query-dsl-boosting-query.html
重要: 此版本不会发布额外的bug修复或文档更新。最新信息请参考 当前版本文档。
返回匹配 positive
(肯定) 查询的文档,同时降低匹配 negative
(否定) 查询的文档的 相关性评分 。
可以使用 boosting
查询来降级某些文档(降低其相关性评分),但不会将它们从搜索结果中排除。
GET /_search { "query": { "boosting" : { "positive" : { "term" : { "text" : "apple" } }, "negative" : { "term" : { "text" : "pie tart fruit crumble tree" } }, "negative_boost" : 0.5 } } }