document的核心元数据

document的核心元数据有三个:_index、_type、_id

初始化数据:

PUT test_index/test_type/1
{
  "test_content":"test test"
}
{
  "_index": "test_index",
  "_type": "test_type",
  "_id": "1",
  "_version": 1,
  "result": "created",
  "_shards": {
    "total": 2,
    "successful": 1,
    "failed": 0
  },
  "created": true
}
View Code

相关文章:

  • 2021-06-28
  • 2021-07-03
  • 2021-10-26
  • 2022-12-23
  • 2021-12-10
  • 2022-02-07
  • 2021-07-20
  • 2022-03-04
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-23
  • 2021-07-14
  • 2022-01-20
  • 2022-12-23
  • 2021-06-21
相关资源
相似解决方案