BM25 score when do search in multi field

es_query = {
"bool": {
"must": [
{"match": {"title": title_text}},
{"match": {"year": year_text}}
]
}
}
when i do search 2 field match, how elasticsearch combine score of 2 match?

Hi @r1ckC139

I believe the api explain can help you understand.

Understanding the Explain API & Elasticsearch Scoring.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.