首页 > 代码库 > ElasticSearch入门常用命令

ElasticSearch入门常用命令

基于开源项目MyAlice智能客服学习ElasticSearch

https://github.com/hpgary/MyAlice/wiki/%E7%AC%AC01%E7%AB%A0%E5%AE%89%E8%A3%85

首先和常用的关系型数据库做一个对比,明确一下概念:

EslaicSearchMySQL   
索引数据库
type
document
filed
  

1、查看集群

http://localhost:19200/

2、查看文档数量

http://localhost:19200/_count?pretty

3、查看健康状态

http://localhost:19200/_cat/health?v

4、查看节点信息

http://localhost:19200/_cat/nodes?v

5、查看索引

http://localhost:19200/_cat/indices?v

6、查看索引下的类型

http://localhost:19200/myalice

对应的mappings字段里面的字段名称就是类型(相当于数据库中的表)

7、列出某索引 类型 下的文档

http://localhost:19200/myalice/question/_search

question是类型

8、在类型中根据title搜索

http://localhost:19200/myalice/question/_search?q=title:%E5%90%83

其中title是文档字段

ElasticSearch入门常用命令