Teng's blog Teng's blog
首页
Java
H5前端
GitHub (opens new window)
首页
Java
H5前端
GitHub (opens new window)
  • 认知

  • 入门

    • 环境准备
    • RESTful&JSON
    • 客户端工具
    • 倒排索引
    • 数据格式
    • RESTful-API

      • 索引-创建
      • 索引-查询
      • 索引-删除
      • 文档-创建
      • 文档-主键查询
      • 文档-全量查询
      • 文档-删除
      • 文档-修改
      • 映射-创建
      • 映射-查询
      • DSL-数据准备
      • DSL-全量查询
      • DSL-匹配查询
      • DSL-关键字查询
      • DSL-指定返回字段
      • DSL-组合查询
      • DSL-范围查询
      • DSL-模糊查询
      • DSL-排序
      • DSL-高亮
      • DSL-分页查询
      • DSL-聚合查询
    • Java-API

  • 环境

  • 进阶

  • 框架集成

  • 优化

  • 面试题

  • Database-Elasticsearch
  • 入门
  • RESTful-API
Shetengteng
2022-01-25

文档-主键查询

查询文档时,需要指明文档的唯一性标识,类似于 MySQL 中数据的主键查询

在 Postman 中,向 ES 服务器发 GET 请求 : http://localhost:9200/shopping/_doc/1

GET http://localhost:9200/shopping/_doc/1
1

返回信息

{
    "_index": "shopping", // 索引
    "_type": "_doc",	  // 文档类型 _doc
    "_id": "1",
    "_version": 3,
    "_seq_no": 4,
    "_primary_term": 1,
    "found": true,		 // 查询结果 true 表示查找到,false 表示未查找到
    "_source": {		 // _source中是实际存储的信息
        "title": "小米手机",
        "category": "小米",
        "images": "http://xxx.jpg",
        "price": 1999.00
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

当查询不到信息时返回

GET http://localhost:9200/shopping/_doc/3
1

返回信息

{
    "_index": "shopping",
    "_type": "_doc",
    "_id": "3",
    "found": false // 未找到结果
}
1
2
3
4
5
6
Last Updated: 2022/02/05, 15:58:51
文档-创建
文档-全量查询

← 文档-创建 文档-全量查询→

Theme by Vdoing | Copyright © 2021-2022 Shetengteng | MIT License
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式