TF(区块链)*IDF(区块链) + TF(的)*IDF(的) + TF(应用)*IDF(应用)

// boost > 1 打分提升 0 < boost < 1 打分降低 boost < 0 或 negative_boost 贡献负分
GET kibana_sample_data_flights/_search
{
"explain": true,
"query": {
"boosting": {
"positive": {
"term": {
"DestCountry": {
"value": "IT",
"boost": 2
}
}
},
"negative": {
"range": {
"AvgTicketPrice": {
"gte": 800
}
}
},
"negative_boost": 0.2
}
}
}