skynyrd
3/7/2017 - 7:37 PM

Boosting in Elastic 5

Boosting in Elastic 5

Boost the score:

GET books/book/_search
{
  "query" : {
    "multi_match": {
      "query" : "Elastic",
      "fields" : ["title", "description^2"]
    }
  }
}

description^2 : 2 * score of the docs that contents "Elastic" in their description fields.