ES系列四、ES6.3常用api之文档类api
1.Index API: 创建并建立索引 PUT twitter/tweet/ 1 { " user " : " kimchy " , " post_date " : " 2009-11-15T14:12:12 " , " message " : " trying out Elasticsearch " } 官方文档参考: Index API 。 2.Get API: 获取文档 curl -XGET 'http://localhost:9200/twitter/tweet/1' 官方文档参考: Get API 。 3.DELETE API: 删除文档 $ curl -XDELETE 'http://localhost:9200/twitter/tweet/1' 官方文档参考: Delete API 。 4.UPDATE API: 更新文档 PUT test/type1/1{ "counter" : 1, "tags" : ["red"]} 官方文档参考: Update API 。 5.Multi Get API: 一次批量获取文档 PUT ' localhost:9200/_mget { " docs " : [ { " _index " : " test " , " _type " : " type " , " _id " : " 1 " }, { " _index " : "