按 Id 检索文档
curl -XGET 'http://www.example.com:9200/myIndexName/myTypeName/1'
输出:
{
"_index" : "myIndexName",
"_type" : "myTypeName",
"_id" : "1",
"_version" : 1,
"found": true,
"_source" : {
"user" : "mrunal",
"postDate" : "2016-07-25T15:48:12",
"message" : "This is test document!"
}
}
参考链接: 这里