Skip to content

Commit 9b8b20a

Browse files
authored
[DOCS] Clarifies the effect of per-field boosting (#63733)
The original description of per-field boosting is incorrect. Boosting a field does not imply that it is more important relative to other fields. It simply means that the score is multiplied by the supplied boost value. Due to the differences in each field's term and document statistics, it's not possible to imply relative importance of fields based on the per-field boost value alone.
1 parent 1cf789e commit 9b8b20a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/reference/query-dsl/multi-match-query.asciidoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ GET /_search
5959
}
6060
--------------------------------------------------
6161

62-
<1> The `subject` field is three times as important as the `message` field.
62+
<1> The query multiplies the `subject` field's score by three but leaves the
63+
`message` field's score unchanged.
6364

6465
If no `fields` are provided, the `multi_match` query defaults to the `index.query.default_field`
6566
index settings, which in turn defaults to `*`. `*` extracts all fields in the mapping that

0 commit comments

Comments
 (0)