我对elasticsearch中的术语查询有疑问。我发送以下查询:
{
"query": {
"term": {
"title":"Test1"
}
}
}
我的结果是空的:
{
"took": 1,
"timed_out": false,
"_shards": {
"total": 3,
"successful": 3,
"skipped": 0,
"failed": 0
},
"hits": {
"total": 0,
"max_score": null,
"hits": []
}
}
但如果我发送以下内容:
{
"query": {
"term": {
"root":true
}
}
}
我有:
{
"took": 3,
"timed_out": false,
"_shards": {
"total": 3,
"successful": 3,
"skipped": 0,
"failed": 0
},
"hits": {
"total": 3,
"max_score": 0.2876821,
"hits": [
{
"_index": "content_2018-05-30-092148",
"_type": "topic",
"_id": "6064f7ac-63d5-11e8-adc0-fa7ae01bbeb1",
"_score": 0.2876821,
"_source": {
"_meta": {
"model": "Secafi\\Content\\Topic"
},
"id": "6064f7ac-63d5-11e8-adc0-fa7ae01bbeb1",
"title": "Test2",
"root": true
}
},
{
"_index": "content_2018-05-30-092148",
"_type": "topic",
"_id": "6064f7ac-63d5-11e8-adc0-fa7ae01bbeb2",
"_score": 0.2876821,
"_source": {
"_meta": {
"model": "Secafi\\Content\\Topic"
},
"id": "6064f7ac-63d5-11e8-adc0-fa7ae01bbeb2",
"title": "Test3",
"root": true
}
},
{
"_index": "content_2018-05-30-092148",
"_type": "topic",
"_id": "6064f7ac-63d5-11e8-adc0-fa7ae01bbebc",
"_score": 0.2876821,
"_source": {
"_meta": {
"model": "Secafi\\Content\\Topic"
},
"id": "6064f7ac-63d5-11e8-adc0-fa7ae01bbebc",
"title": "Test1",
"root": true
}
}
]
}
}
如果我在title字段上进行匹配查询,我会得到相同的结果,它永远不会返回任何文档。
出了什么问题。为什么第一个查询没有返回文档Test1?
答案 0 :(得分:3)
术语查询会查找确切的术语。您可能正在使用具有小写过滤器的标准分析器。因此,当索引中的内容为“term1”时,您正在搜索“Term1”。
术语非常适合完全匹配数字或ID(如9844-9332-22333)。对于像帖子标题这样的字段来说则不那么容易。
要确认这一点,你可以这样做:
{
"query": {
"term": {
"title.keyword":"Test1"
}
}
}
如果您的记录使用“Test1”的确切标题编制索引,那么哪个应该有效。这使用关键字分析器而不是标准分析器(标题后注意“.keyword”)。在elasticsearch的最新版本中,默认情况下会添加关键字分析器,除非您覆盖此行为。关键字是一个完全匹配的“noop”分析器,它将整个字符串作为单个标记返回以进行匹配。
对于标题,你可能想要的是:
{
"query": {
"match": {
"title":"Test1"
}
}
}
匹配查询通过默认用于索引文档的标准分析器(小写等)运行输入字符串,因此elasticsearch能够将查询文本与elasticsearch索引中的内容进行匹配。
查看文档以获取有关匹配与术语的更多详细信息。 https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-query.html https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-term-query.html