ES之简单查询(入门)

ES之简单查询(入门)

1.全量查询
发送 【GET】 请求:http://127.0.0.1:9200/test-index-3/_search,返回结果如下

{
    "took": 4,
    "timed_out": false,
    "_shards": {
        "total": 1,
        "successful": 1,
        "skipped": 0,
        "failed": 0
    },
    "hits": {
        "total": {
            "value": 9,
            "relation": "eq"
        },
        "max_score": 1.0,
        "hits": [
            {
                "_index": "test-index-3",
                "_type": "_doc",
                "_id": "eRMytH0BHlYshFmWCaR-",
                "_score": 1.0,
                "_source": {
                    "title": "test",
                    "num": 1,
                    "date": "20211213"
                }
            },
            {
                "_index": "test-index-3",
                "_type": "_doc",
                "_id": "ehM0tH0BHlYshFmWF6Tt",
                "_score": 1.0,
                "_source": {
                    "title": "test",
                    "num": 1,
                    "date": "20211213"
                }
            },
            {
                "_index": "test-index-3",
                "_type": "_doc",
                "_id": "exM0tH0BHlYshFmWH6S7",
                "_score": 1.0,
                "_source": {
                    "title": "test",
                    "num": 1,
                    "date": "20211213"
                }
            },
            {
                "_index": "test-index-3",
                "_type": "_doc",
                "_id": "1001",
                "_score": 1.0,
                "_source": {
                    "title": "test",
                    "num": 1,
                    "date": "20211213"
                }
            },
            {
                "_index": "test-index-3",
                "_type": "_doc",
                "_id": "1002",
                "_score": 1.0,
                "_source": {
                    "title": "test",
                    "num": 1,
                    "date": "20211213"
                }
            },
            {
                "_index": "test-index-3",
                "_type": "_doc",
                "_id": "1003",
                "_score": 1.0,
                "_source": {
                    "title": "test",
                    "num": 1,
                    "date": "20211213"
                }
            },
            {
                "_index": "test-index-3",
                "_type": "_doc",
                "_id": "1004",
                "_score": 1.0,
                "_source": {
                    "title": "test",
                    "num": 1,
                    "date": "20211213"
                }
            },
            {
                "_index": "test-index-3",
                "_type": "_doc",
                "_id": "1005",
                "_score": 1.0,
                "_source": {
                    "title": "test",
                    "num": 1,
                    "date": "20211213"
                }
            },
            {
                "_index": "test-index-3",
                "_type": "_doc",
                "_id": "1006",
                "_score": 1.0,
                "_source": {
                    "title": "test",
                    "num": 1,
                    "date": "20211213"
                }
            }
        ]
    }
}

2.根据id精确查找数据
发送 【GET】 请求:http://127.0.0.1:9200/test-index-3/_doc/1001,返回结果如下

{
    "_index": "test-index-3",
    "_type": "_doc",
    "_id": "1001",
    "_version": 3,
    "_seq_no": 5,
    "_primary_term": 1,
    "found": true,
    "_source": {
        "title": "test",
        "num": 1,
        "date": "20211213"
    }
}

3.根据多个id精确查找数据
发送 【GET】 请求:http://127.0.0.1:9200/_mget,参数如下

{
   "docs" : [
      {
         "_index" : "test-index-3",
         "_type" :  "_doc",
         "_id" :    2
      },
      {
         "_index" : "test-index-1",
         "_type" :  "_doc",
         "_id" :    1
      }
   ]
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值