首先,我正在关注位于here的弹性搜索教程。我正在尝试使用多个查询字符串执行搜索。
我的索引有几个字段,但我感兴趣的是"路径"。
我知道我至少有这条道路
path: "ops/TopRelation/...."
在我的索引中。我已经证实了这一点。
为什么这个查询什么也不返回。
{
"query":{
"match":{
"path":{
"query": "ops toprelation",
"operator": "and"
}
}
}
}
但是这个查询会返回我期望的结果。
{
"query": {
"bool": {
"must": [
{ "match": { "path": "ops" }},
{ "match": { "path": "toprelation" }}
]
}
}
}
我认为顶级查询基本上是在内部使用底部查询的查询?实际上,教程中的示例似乎表明this。
Because the match query has to look for two terms — ["brown","dog"] — internally it
has to execute two term queries and combine their individual results into the overall
result. To do this, it wraps the two term queries in a bool query, which we will
examine in detail in Combining queries below.
答案 0 :(得分:0)
如果您在“运算符”中使用“或”代替“和”,它是否会返回任何结果?
请你分享该索引的映射。
GET <IndeName>/<Type>/_mapping