在 Elasticsearch 中为布尔查询中的子句分配自定义分数
Assign custom scores to clauses in boolean query in Elasticsearch
在 Elasticsearch 中,我正在测试以下查询:
GET sdata/_search
{
"query": {
"bool": {
"must": [
{ "match": { "f1": "sth" } }
],
"should": [
{ "match": { "f2": "sth" } }
]
}
}
}
我知道检索到的文档的总分取决于它们实现的匹配次数。但是是否可以自定义最终分数,使匹配 should
子句的文档的权重可能比仅匹配 must
的文档高得多?我可以添加一个脚本来确定每个子句对最终分数的贡献吗?
提前致谢
您可以将 boost
参数与 should
子句一起使用
{
"query": {
"bool": {
"must": [
{
"match": {
"f1": "sth"
}
}
],
"should": [
{
"match": {
"f2": {
"query": "sth",
"boost": 10
}
}
}
]
}
}
}
在 Elasticsearch 中,我正在测试以下查询:
GET sdata/_search
{
"query": {
"bool": {
"must": [
{ "match": { "f1": "sth" } }
],
"should": [
{ "match": { "f2": "sth" } }
]
}
}
}
我知道检索到的文档的总分取决于它们实现的匹配次数。但是是否可以自定义最终分数,使匹配 should
子句的文档的权重可能比仅匹配 must
的文档高得多?我可以添加一个脚本来确定每个子句对最终分数的贡献吗?
提前致谢
您可以将 boost
参数与 should
子句一起使用
{
"query": {
"bool": {
"must": [
{
"match": {
"f1": "sth"
}
}
],
"should": [
{
"match": {
"f2": {
"query": "sth",
"boost": 10
}
}
}
]
}
}
}