已更新整合到新文章:https://dataartist.blog.csdn.net/article/details/130139631
比较慢的查询方法:如果使用如下 body 查询 ES 索引中内容的话,实际上应该会遍历索引中所有字段,如果字段内容很长的话,速度会比较慢:
{
"query": {
"match_all": {}
},
"_source": ""
}
结果形如:
"hits": [
{
"_index": "...",
"_type": "_doc",
"_id": "...",
"_score": 1.0,
"_source": {}
}
]
比较快的查询方法:如果使用如下 body 查询 ES 索引中内容的话,则不会遍历索引中的所有字段,即使字段内容很长,速度也不会变慢太多:文章来源:https://www.toymoban.com/news/detail-522556.html
{
"query": {
"match_all": {}
},
"_source": false
}
结果形如:文章来源地址https://www.toymoban.com/news/detail-522556.html
"hits": [
{
"_index": "...",
"_type": "_doc",
"_id": "...",
"_score": 1.0
}
]
到了这里,关于笔记|ElasticSearch|ES 快速批量查询 doc 的 _id 的方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!