ES数据库基本操作 一、Elasticsearch介绍 二、curl 基本操作 三、es 可视化工具 一、Elasticsearch介绍 二、curl 基本操作 参考:使用curl操作 新建 index : curl -H "Content-Type: application/json" -X PUT 'localhost:9200/accounts' -d ' { "mappings": { "person": { "properties": { "user": { "type": "text" }, "title": { "type": "text" }, "desc": { "typ...