elasticsearch 接口简单使用

发布时间:2023年12月25日

目录

一、启动es

1.1?启动

1.2 访问测试

二、es接口测试

2.1 创建索引并创建Mapping

2.2?添加文档

2.3 检索


一、启动es

1.1?启动

进入 elasticsearch-8.11.3\bin 目录下 启动 elasticsearch.bat

?

1.2 访问测试

浏览器访问 http://localhost:9200/ 有输出则启动成功

二、es接口测试

2.1 创建索引并创建Mapping

请求地址:http://localhost:9200/test2

请求方式:put

Body:

{
? "mappings": {
? ? ? "properties": {
? ? ? ? "id": {
? ? ? ? ? "type": "long",
? ? ? ? ? "store": true
? ? ? ? },
? ? ? ? "title": {
? ? ? ? ? "type": "text",
? ? ? ? ? "store": true,
? ? ? ? ? "analyzer":"standard"
? ? ? ? },
? ? ? ? "content": {
? ? ? ? ? "type": "text",
? ? ? ? ? "store": true,
? ? ? ? ? "analyzer":"standard"
? ? ? ? }?
? ? ? }
? }
}

2.2?添加文档

请求地址:http://localhost:9200/test2/_doc/1

请求方式:put

Body:

{
?? ?"id":1,
?? ?"title":"title1",
?? ?"content":"This is a text about el testing"
}

?

2.3 检索

请求地址:http://localhost:9200/test2/_search

请求方式:get

Body(检索所有):

{
? "query": {
? ? "query_string": {
? ? ? "query": "is"
? ? }
? }
}

?Body(仅检索 content):

{
? "query": {
? ? "query_string": {
? ? ? "fields": ["content"],
? ? ? "query": "is"
? ? }
? }
}?

文章来源:https://blog.csdn.net/m0_60769905/article/details/135198602
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。