ElasticSearch入门操作例子(5.5以上)

本地安装ElasticSearch然后下载ElasticSearch head插件配合使用

使用Elasticsearch-head插件连接本地http://127.0.0.1:9200/

使用小知识:动作(put post)     索引/类型/id (index/type/id)    操作语句

1.添加索引

put      es_study_test/

{}

2.添加mapping结构

post   es_study_test/resource/_mapping

{
    "resource": {
        "properties": {
            "id": {
                "type": "integer"
            },
            "name": {
                "type": "keyword"
            }
        }
    }
}

3.查看mapping结构

get    es_study_test/resource/_mapping

{}

4.添加数据(post可以不指定id自动生成,put一定得指定id),(keyword格式才能做模糊查询,integer不行,id可以插入带"",不带""也行)

post  es_study_test/resource/156

{
  "id": "12",
  "name": "test"
}

5.查看所有数据

get  es_study_test/resource/_search

{"query":{"match_all":{}}}

6.删除索引(索引和索引下的所有数据都删除)

delete es_study_test/

{}

 

你可能感兴趣的:(Elasticsearch)