沙师弟,师父的充电器掉了

【求助】全文搜索如何使用 filter 过滤查询

Elasticsearch | 作者 tumayun | 发布于2016年04月11日 | 阅读数:3987

求助!想限定在某一分类下全文搜索,怎么写查询,最好是给出 example,万分感谢!
 
已邀请:

helloes

赞同来自:

ES1.x
{
"query": {
"filtered": {
"query": {
...
},
"filter": {
...
}
}
}
}

ES2.x
{
"query": {
"bool": {
"must": {
...
},
"filter": {
...
}
}
}
}

tumayun

赞同来自:

{
"query": {
"bool": {
"must": { "match": keyword },
"filter": ...
}
}
}
我用的这个

要回复问题请先登录注册