本文是ElasticSearch 的入门文章,包含ElasticSearch 的环境准备和基础操作(使用postman)
ElasticSearch 系列文章目的是使用ElasticSearch结合spring boot项目实现项目的搜索功能。
系列文章 :
spring boot 项目中搭建 ElasticSearch 中间件 二 java api 操作 es
spring boot 项目中搭建 ElasticSearch 中间件 三 spring data 操作 es
存储,检索数据
集群扩展
PB级处理数据
全文检索,分析
日志管理
本文使用 elasticsearch-7.10.0
不同的jdk版本要使用适配的es版本
最新es与jdk适配图
elasticsearch-7.10.0-windows-x86_64\elasticsearch-7.10.0\bin
下载后在bin中点击 elasticsearch.bat 启动es
默认端口是9200
es有几个重要概念
id(1001) - > name("zhang san"), type("man")
,es进行分词 建立一个"zhang " -> 1001和 “san” -> 1001就是倒排索引注:以下操作 以索引名为product为例
注:域名前表示请求类型
// 请求类型
post
// 域名
http://localhost:9200/product
// 请求类型
get
// 域名
http://localhost:9200/product
// 请求类型
get
// 域名
http://localhost:9200/_cat/indices?v
// 请求类型
delete
// 域名
http://localhost:9200/product
注:以下操作 以索引名为
product
为例
注:域名前表示请求类型
注:以下使用1001
作为文档唯一id,可以不填,es会创建一个唯一id
注:_doc
为固定写法表示操作文档
// 请求类型
post
// 域名
http://localhost:9200/product/_doc/1001
// 请求体body
{
"title":"小米手机",
"category":"小米",
"image":"http://www.sean.com/xm.jpg",
"price":10000
}
// 请求类型
get
// 域名
http://localhost:9200/product/_doc/1001
// 请求类型
get
// 域名
http://localhost:9200/product/_search
// 请求类型
put
// 域名
http://localhost:9200/product/_doc/1001
// 请求体body
{
"title":"华为手机",
"category":"小米",
"image":"http://www.sean.com/xm.jpg",
"price":10000
}
// 请求类型
post
// 域名
http://localhost:9200/product/_update/1001
// 请求体body
{
"doc": {
"title":"mi手机"
}
}
// 请求类型
delete
// 域名
http://localhost:9200/product/_doc/1001
// 请求类型
get
// 域名
http://localhost:9200/product/_search?q=category:小米
// 请求类型
get
// 域名
http://localhost:9200/shopping/_search
// 请求体body
{
"query" : {
"match" : {
"category" : "小米"
}
}
}
分页查询
// 请求类型
get
// 域名
http://localhost:9200/shopping/_search
// 请求体body
{
"query" : {
"match" : {
"category" : "小米"
}
},
"from": 0,
"size": 1
}
只显示一个
title
字段
// 请求类型
get
// 域名
http://localhost:9200/shopping/_search
// 请求体body
{
"query" : {
"match" : {
"category" : "小米"
}
},
"from": 0,
"size": 1,
"_source":["title"]
}