Elasticsearch 基操
一、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": {
"type":