From 577183ee4e572651b9342044127c39a32a615086 Mon Sep 17 00:00:00 2001 From: Abdon Pijpelink Date: Wed, 9 Aug 2023 14:44:13 +0200 Subject: [PATCH] [DOCS] Add 'boost' paramater to match query (#98108) (#98322) --- docs/reference/query-dsl/match-query.asciidoc | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/reference/query-dsl/match-query.asciidoc b/docs/reference/query-dsl/match-query.asciidoc index cccf399358a32..eb840508aba39 100644 --- a/docs/reference/query-dsl/match-query.asciidoc +++ b/docs/reference/query-dsl/match-query.asciidoc @@ -65,6 +65,17 @@ See <> for an example. -- +`boost`:: ++ +-- +(Optional, float) Floating point number used to decrease or increase the +<> of the query. Defaults to `1.0`. + +Boost values are relative to the default value of `1.0`. A boost value between +`0` and `1.0` decreases the relevance score. A value greater than `1.0` +increases the relevance score. +-- + `fuzziness`:: (Optional, string) Maximum edit distance allowed for matching. See <> for valid values and more information. See <>