Elasticsearch 顶尖高手(14)—_source元数据以及定制返回结果解析
1.source元数据
_source元数据: 就是说,我们在创建一个document的时候,使用的那个放在request body中的json串,默认情况下,在get的时候,会原封不动的返回。
2.定制返回结果
定制返回的结果,指定_source中,返回哪些fields。
GET /test_index/test_type/1?_source=test_field2,test_field1
_source元数据: 就是说,我们在创建一个document的时候,使用的那个放在request body中的json串,默认情况下,在get的时候,会原封不动的返回。
定制返回的结果,指定_source中,返回哪些fields。
GET /test_index/test_type/1?_source=test_field2,test_field1