标签:
PUT:http://localhost:9200/twitter
{ "settings" : { "number_of_shards" : 3, "number_of_replicas" : 2 }, "mappings" : { "type1" : { "properties" : { "field1" : { "type" : "string", "index" : "not_analyzed" } } } }, "aliases" : { "alias_1" : {} } }
DELETE:http://localhost:9200/twitter
GET:http://localhost:9200/twitter/
GET:http://localhost:9200/twitter/_settings,_mappings/
官方示例:curl -XHEAD -i ‘http://localhost:9200/twitter‘
标签:
原文地址:http://www.cnblogs.com/Jabben/p/5679579.html