热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

开发笔记:Elasticsearch之增加和删除索引

篇首语:本文由编程笔记#小编为大家整理,主要介绍了Elasticsearch之增加和删除索引相关的知识,希望对你有一定的参考价值。增加索引

篇首语:本文由编程笔记#小编为大家整理,主要介绍了Elasticsearch之增加和删除索引相关的知识,希望对你有一定的参考价值。


增加索引

利用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

 技术图片

 

 技术图片

 

 技术图片

 


推荐阅读
author-avatar
加乘ACCA财务英语教室_438
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有