Elasticsearch搜索引擎安装使用

发布于:2022-10-27 ⋅ 阅读:(385) ⋅ 点赞:(0)

一、下载,运行

https://mirrors.huaweicloud.com/elasticsearch/7.6.2/elasticsearch-7.6.2-windows-x86_64.zip

双击bat文件,运行成功后访问:http://localhost:9200/  会出现下面

二、作用

        类似数据库,可以在大量的数据中查找到想要的数据,取代数据库的模糊查询。

三、创建 http client测试

         

        插入代码

### 分割符也是注释,每个发送指令的请求之间必须使用分隔符
GET http://localhost:9200

### 测试es的分词功能,运行分词,查看结果
POST http://localhost:9200/_analyze
Content-Type: application/json

{
  "text": "my name is hanmeimei",
  "analyzer": "standard"
}

"analyzer": "standard":默认的分词方式/规则 ,按照空格拆封

四、添加中文分词器

下载包:(1条消息) 中文常见搜索引擎分词库-Java文档类资源-CSDN文库

将下载文件解压到Elasticsearch文件中plugins的ik文件夹下,然后重启

 插入示例代码

### 测试es的分词功能,运行分词,查看结果
POST http://localhost:9200/_analyze
Content-Type: application/json

{
  "text": "小刚好",
  "analyzer": "ik_smart"
}

分词结果

POST http://localhost:9200/_analyze

HTTP/1.1 200 OK
content-type: application/json; charset=UTF-8

{
  "tokens": [
    {
      "token": "小刚",
      "start_offset": 0,
      "end_offset": 2,
      "type": "CN_WORD",
      "position": 0
    },
    {
      "token": "好",
      "start_offset": 3,
      "end_offset": 4,
      "type": "CN_CHAR",
      "position": 4
    }
  ]
}

http client各段代码意解释

五、ES常用命令

### 创建 index
PUT http://localhost:9200/questions

### 删除一个Index
DELETE http://localhost:9200/questions

### 设置index中的文档属性采用ik分词,properties,只有text类型能搜索
POST http://localhost:9200/questions/_mapping
Content-Type: application/json

{
  "properties": {
    "title": {
      "type": "text",
      "analyzer": "ik_max_word",
      "search_analyzer": "ik_max_word"
    },
    "content": {
      "type": "text",
      "analyzer": "ik_max_word",
      "search_analyzer": "ik_max_word"
    }
  }
}

### questions 中添加文档
POST http://localhost:9200/questions/_create/1
Content-Type: application/json

{
  "id":1,
  "title":"Java基本数据类型有哪些",
  "content":"面时候为啥要问基本类型这么简单问题呀,我们要如何回答呢?"
}

 

本文含有隐藏内容,请 开通VIP 后查看

网站公告

今日签到

点亮在社区的每一天
去签到