官网传送门

简介

开源的高扩展的分布式全文搜索引擎,是一个面向文档型数据库。与mysql进行对比,在es 7.X后面的版本中删除了Type的概念。
146a779da01f53e7f7a8d53132d3c7cf.png

入门

下载后解压到本地文件夹 (不能有空格,在加载IK分词器会报错)
9300 端口为 Elasticsearch 集群间组件的通信端口, 9200 端口为浏览器访问的 http协议 RESTful 端口。

浏览器访问

get http://localhost:9200/

response:

{ “name” : “REM”, “cluster_name” : “elasticsearch”, “cluster_uuid” : “kH6KPpFoT0qrMy8qwifT6A”,

“version” : {

  1. "number" : "7.8.0",
  2. "build_flavor" : "default",
  3. "build_type" : "zip",
  4. "build_hash" : "757314695644ea9a1dc2fecd26d1a43856725e65",
  5. "build_date" : "2020-06-14T19:35:50.234439Z",
  6. "build_snapshot" : false,
  7. "lucene_version" : "8.5.1",
  8. "minimum_wire_compatibility_version" : "6.8.0",
  9. "minimum_index_compatibility_version" : "6.0.0-beta1"

},

“tagline” : “You Know, for Search”

}

对索引,文档进行操作

使用postman发送请求ES基本操作.postman_collection.json
导入postman可查看操作

JAVA API操作&springboot操作

https://gitee.com/remember0324/rem_project.git