1. 程式人生 > >ElasticSearch中_source元資料和定製返回結果

ElasticSearch中_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

GET /index/type/1?_source=結果1,結果2,.....

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_field2": "test field2"
  }
}