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

Elasticsearch之增加和删除索引

时间:2020-02-26 17:04:15      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:src   请求方式   增加   mapping   sea   restful   删除   res   image   

增加索引

利用postMan工具发送restfulAPI添加索引库 请求方式为put代表添加

创建索引index时映射mapping

请求URL:

使用put发送http://localhost:9200/blog1

{
    "mappings": {
        "article": {
            "properties": {
                    "id": {
                    "type": "long",
                    "store": true,
                    "index":"not_analyzed"
                    },
                    "title": {
                    "type": "text",
                    "store": true,
                    "index":"analyzed",
                    "analyzer":"standard"
                    },
                    "content": {
                    "type": "text",
                    "store": true,
                    "index":"analyzed",
                    "analyzer":"standard"
                    }
            }
        }
    }
}

  

效果:

技术图片

 

 

 

 

技术图片

 

 

 

 

创建索引index后映射mapping

先使用 put 请求发送 http://localhost:9200/blog2

技术图片

技术图片

 

 

 

然后使用 post 请求发送http://localhost:9200/blog2/hello/_mapping

技术图片

 

 

 

删除索引

使用DELET请求发送 http://localhost:9200/blo

 技术图片

 

 技术图片

 

 技术图片

 

Elasticsearch之增加和删除索引

标签:src   请求方式   增加   mapping   sea   restful   删除   res   image   

原文地址:https://www.cnblogs.com/wishsaber/p/12367562.html

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