目录
进入 elasticsearch-8.11.3\bin 目录下 启动 elasticsearch.bat
?
浏览器访问 http://localhost:9200/ 有输出则启动成功
请求地址: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"
? ? ? ? }?
? ? ? }
? }
}
请求地址:http://localhost:9200/test2/_doc/1
请求方式:put
Body:
{
?? ?"id":1,
?? ?"title":"title1",
?? ?"content":"This is a text about el testing"
}
?
请求地址:http://localhost:9200/test2/_search
请求方式:get
Body(检索所有):
{
? "query": {
? ? "query_string": {
? ? ? "query": "is"
? ? }
? }
}
?Body(仅检索 content):
{
? "query": {
? ? "query_string": {
? ? ? "fields": ["content"],
? ? ? "query": "is"
? ? }
? }
}?