批量查询

http://192.168.35.132:9200/shop/_doc/_mget
{
      "ids":["1001","1002"]

}
  • 结果:"found": true表示有数据,false表示没有数据
{
    "docs": [
        {
            "_index": "shop",
            "_type": "_doc",
            "_id": "1001",
            "_version": 1,
            "_seq_no": 0,
            "_primary_term": 1,
            "found": true,
            "_source": {
                "id": 1001,
                "age": 18,
                "username": "imoocAmazing",
                "nickname": "慕课网",
                "money": 88.8,
                "desc": "我在慕课网学习java和前端,学习到了很多知识",
                "sex": 0,
                "birthday": "1992-12-24",
                "face": "https://www.imooc.com/static/img/index/logo.png"
            }
        },
        {
            "_index": "shop",
            "_type": "_doc",
            "_id": "1002",
            "_version": 1,
            "_seq_no": 0,
            "_primary_term": 1,
            "found": true,
            "_source": {
                "id": 1002,
                "age": 19,
                "username": "justbuy",
                "nickname": "周杰棍",
                "money": 77.8,
                "desc": "今天上下班都很堵,车流量很大",
                "sex": 1,
                "birthday": "1993-01-24",
                "face": "https://www.imooc.com/static/img/index/logo.png"
            }
        }
    ]
}
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。