| 12345678910111213141516171819202122232425262728293031323334353637383940 | [[search-request-index-boost]]=== Index BoostAllows to configure different boost level per index when searchingacross more than one indices. This is very handy when hits coming fromone index matter more than hits coming from another index (think socialgraph where each user has an index).deprecated[5.2.0, This format is deprecated. Please use array format instead.][source,js]--------------------------------------------------GET /_search{    "indices_boost" : {        "index1" : 1.4,        "index2" : 1.3    }}--------------------------------------------------// CONSOLE// TEST[setup:index_boost warning:Object format in indices_boost is deprecated, please use array format instead]You can also specify it as an array to control the order of boosts.[source,js]--------------------------------------------------GET /_search{    "indices_boost" : [        { "alias1" : 1.4 },        { "index*" : 1.3 }    ]}--------------------------------------------------// CONSOLE// TEST[continued]This is important when you use aliases or wildcard expression.If multiple matches are found, the first match will be used.For example, if an index is included in both `alias1` and `index*`, boost value of `1.4` is applied.
 |