每日任务推荐的ES查询规则

GET / mc_mission / mission / _search {
"query": {
"function_score": {
"query": {
"bool": {
"must": [

{
"term": {
"mission_factors": "营养"
}
},
{
"term": {
"mission_status": 1
}
},
[{
"term": {
"suitable_tags": "水"
}
},
{
"term": {
"suitable_tags": "膳食种类"
}
}
],
{
"match": {
"finish_action.model_name": "default "
}
}
],
"must_not": [{
"term": {
"recommend": 0
}
}]
}

},
"functions": [

{
"filter": {
"term": {
"suitable_tags": "水"
}
},
"weight": 100
},
{
"filter": {
"term": {
"suitable_tags": "膳食种类"
}
},
"weight": 100
},
{
"filter": {
"term": {
"suitable_tags": "脑血栓"
}
},
"weight": -10000
}

],
"boost_mode": "replace",
"score_mode": "sum"

}
},
"size": 20


}

猜你喜欢

转载自www.cnblogs.com/yazhong-java/p/12747145.html