Elasticsearch 通过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!"
    }
}

参考链接:此处