我使用以下语法获得了很好的搜索结果,但是我在添加布尔条件时遇到了麻烦。
http://localhost:9200/index_name/type_name/_search?q=test
我的文件如下:
{
"isbn":"9780307414922",
"name":"Dark of the Night",
"adult":false
}
关于如何实现我想要做的事情,这是我最好的猜测。
{
"query_string": {
"default_field": "_all",
"query": "test"
},
"from": 0,
"size": 20,
"terms": {
"adult": true
}
}
然而,这导致“解析失败[元素[query_string]没有解析器]];}]”
我正在使用弹性搜索0.20.5。
如何按照“?q = test”的方式匹配包含搜索字词的文档,并按文档的成人资格进行过滤?
提前致谢。
答案 0 :(得分:11)
您的adult == true
子句必须属于query
- 您无法将term
子句作为顶级参数传递给search
。
因此,您可以将其作为查询子句添加到查询中,在这种情况下,您需要使用bool
查询连接两个查询子句,如下所示:
curl -XGET 'http://127.0.0.1:9200/_all/_search?pretty=1' -d '
{
"query" : {
"bool" : {
"must" : [
{
"query_string" : {
"query" : "test"
}
},
{
"term" : {
"adult" : true
}
}
]
}
},
"from" : 0,
"size" : 20
}
'
但是,真的,查询条款应该用于:
但是,您的adult == true
子句未用于更改相关性,并且不涉及全文搜索。它更像是/无响应,换句话说,它更适合作为过滤条款。
这意味着您需要在查询子句中包含全文查询(_all
包含test
),该子句同时接受查询和过滤:filtered
查询:
curl -XGET 'http://127.0.0.1:9200/_all/_search?pretty=1' -d '
{
"query" : {
"filtered" : {
"filter" : {
"term" : {
"adult" : true
}
},
"query" : {
"query_string" : {
"query" : "test"
}
}
}
},
"from" : 0,
"size" : 20
}
'
过滤器通常更快,因为: