是否可以在elasticsearch中禁用特定查询(不是类型或所有索引)的分数计算?
答案 0 :(得分:2)
如评论中所述,您可以将您的特定查询包装在 ConstantScoreQuery
中{
"constant_score" : {
"query": { your_query_here}
"filter": {your_filter_here}
"boost" : 1.0
}
}
所有匹配的文件将获得1.0分。有关更多参考信息 - http://www.elastic.co/guide/en/elasticsearch/reference/1.5/query-dsl-constant-score-query.html