Elasticsearch7.1 REST操作。
本博客近期教程笔记都基于elasticsearch7编写
- 创建空索引(put方式)
- 查看索引信息(demo/_mapping?pretty GET)
可以看到,mapping为空。
- 构建索引数据结构
[POST] demo/_mapping?pretty { "properties":{ "title":{ "type":"text", "analyzer":"ik_max_word" }, "content":{ "type":"text", "analyzer":"ik_max_word" } } }
展示图
- 查看mapping [ demo/_mapping?pretty ] GET
- 搜索-(在构建索引时,指定了插入和搜索都用ik分词,这里只设定了from和size字段)
展示图【POST】 demo/_search { "query":{ "term":{ "name":"美国" } }, "from":"0", "size":"20" }