| 1234567891011121314151617181920212223242526272829303132 | [[mapping-boost-field]]=== `_boost`Boosting is the process of enhancing the relevancy of a document orfield. Field level mapping allows to define explicit boost level on aspecific field. The boost field mapping (applied on the<<mapping-root-object-type,root object>>) allowsto define a boost field mapping where *its content will control theboost level of the document*. For example, consider the followingmapping:[source,js]--------------------------------------------------{    "tweet" : {        "_boost" : {"name" : "my_boost", "null_value" : 1.0}    }}--------------------------------------------------The above mapping defines mapping for a field named `my_boost`. If the`my_boost` field exists within the JSON document indexed, its value willcontrol the boost level of the document indexed. For example, thefollowing JSON document will be indexed with a boost value of `2.2`:[source,js]--------------------------------------------------{    "my_boost" : 2.2,    "message" : "This is a tweet!"}--------------------------------------------------
 |