GET act_yq_info_summary/_search
{
"query": {
"bool": {
"must": [{
"bool": {
"should": [{
"match": {
"infoDetail": "乔军"
}
},
{
"match": {
"infoTitle": "乔军"
}
}
]
}
},
{
"terms": {
"userEmotion": ["pos", "neg", "neu"]
}
}
],
"filter": {
"bool": {
"must": [{
"terms": {
"plats": ["jingdong", "toutiao_news", "toutiao_ans", "sina_blog", "sina_com", "bd_news", "bd_konws", "bd_tieba", "zhihu_ques", "zhihu_ans"]
}
},
{
"range": {
"pubTime": {
"gte": "2016-05-01 00:00:00",
"lte": "2018-05-07 23:59:59"
}
}
},
{
"terms": {
"keyWords": ["蓝月亮湖南卫视中秋晚会", "蓝月亮央视中秋晚会", "蓝月亮旋风孝子"]
}
}
]
}
}
}
},
"highlight": {
"fields": [{
"infoTitle": {}
},
{
"infoDetail": {}
}
]
},
"from": 0,
"size": 10,
"sort": [{
"_score": {
"order": "desc"
}
},
{
"pubTime": {
"order": "desc"
}
}
]
}
5、关于分词器,这里还是推荐IK分词吧,IK分词可以设置 ik_smart 或者 ik_max_word,这里不做详解,推荐使用ik_max_word