码迷,mamicode.com
首页 > 其他好文 > 详细

elasticsearch-索引篇

时间:2016-07-17 23:03:43      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:

1、创建新索引

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" : {}
    }
}
View Code

2、删除索引

DELETE:http://localhost:9200/twitter

3、获取索引信息

GET:http://localhost:9200/twitter/

GET:http://localhost:9200/twitter/_settings,_mappings/

4、判断索引是否存在

官方示例:curl -XHEAD -i ‘http://localhost:9200/twitter‘

 

elasticsearch-索引篇

标签:

原文地址:http://www.cnblogs.com/Jabben/p/5679579.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!