Hi,
I would like to give boosting to different fields at index time, for that we can give boost: 1,2,3,4,5 any of those values.
example for index time boost:
"Model": {
"type": "string",
"boost": 2,
"index": "not_analyzed",
"norms": {
"enabled": true
},
"fields": {
"raw": {
"type": "string"
}
}
},
"ModelCode": {
"type": "string",
"include_in_all": false
},
"ShortYear": {
"type": "string",
"boost": 4,
"index": "not_analyzed",
"norms": {
"enabled": true
}
}
In this way am using....
Where I have number of fields, such that I would like to give boost value even 6, 7, 8..
Can I give boost value >5?????
Will this index time boosting works for nay type of query????