(九)Delete an Index

Now let’s delete the index that we just created and then list all the indexes again:json

如今让咱们删除刚刚建立的索引,而后再次列出全部索引:

curl -X DELETE "localhost:9200/customer?pretty"
curl -X GET "localhost:9200/_cat/indices?v"app

And the response:curl

health status index uuid pri rep docs.count docs.deleted store.size pri.store.size

Which means that the index was deleted successfully and we are now back to where we started with nothing in our cluster.ui

这意味着索引已成功删除,咱们如今回到咱们在集群中没有任何内容的地方。
 
Before we move on, let’s take a closer look again at some of the API commands that we have learned so far:
在咱们继续以前,让咱们再仔细看看到目前为止咱们学到的一些API命令:
curl -X PUT "localhost:9200/customer"
curl -X PUT "localhost:9200/customer/_doc/1" -H 'Content-Type: application/json' -d'
{
  "name": "John Doe"
}
'
curl -X GET "localhost:9200/customer/_doc/1"
curl -X DELETE "localhost:9200/customer"

If we study the above commands carefully, we can actually see a pattern of how we access data in Elasticsearch. That pattern can be summarized as follows:url

若是咱们仔细研究上述命令,咱们实际上能够看到咱们如何在Elasticsearch中访问数据的模式。该模式可概括以下:
<REST Verb> /<Index>/<Type>/<ID>
<url>/<Index>/<Type>/<Id>

This REST access pattern is so pervasive throughout all the API commands that if you can simply remember it, you will have a good head start at mastering Elasticsearch.spa

这种REST访问模式在全部API命令中都很是广泛,若是你能记住它,你将在掌握Elasticsearch方面有一个良好的开端。
相关文章
相关标签/搜索