16、分布式文档系统--document的_source元数据以及定制返回结果解析(来自学习资料+自己整理)
生活随笔
收集整理的這篇文章主要介紹了
16、分布式文档系统--document的_source元数据以及定制返回结果解析(来自学习资料+自己整理)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1、_source元數據
準備一條數據
put /test_index/test_type/1 {"test_field1": "test field1","test_field2": "test field2" }然后獲取數據
get /test_index/test_type/1顯示的結果是:
{"_index": "test_index","_type": "test_type","_id": "1","_version": 2,"found": true,"_source": {"test_field1": "test field1","test_field2": "test field2"} }知識點:
_source元數據:就是說,我們在創建一個document的時候,使用的是那個放在request body的json串。默認情況下,在get的時候,會原封不動的返回回來。
為了能夠定制返回的結果,可以使用下面的方式:
2、定制返回結果
定制返回的結果,是通過指定_source,然后寫上返回哪些field來實現。
命令:
返回內容是:
{"_index": "test_index","_type": "test_type","_id": "1","_version": 2,"found": true,"_source": {"test_field1": "test field1"} }如果想指定多列,命令如下:
GET /test_index/test_type/1?_source=test_field1,test_field2結果如下:
{"_index": "test_index","_type": "test_type","_id": "1","_version": 2,"found": true,"_source": {"test_field1": "test field1","test_field2": "test field2"} }也就是說,可以通過逗號,然后加上列名即可
總結
以上是生活随笔為你收集整理的16、分布式文档系统--document的_source元数据以及定制返回结果解析(来自学习资料+自己整理)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 三津汤包的包子的优势
- 下一篇: 17、document的全量替换,doc