ElasticSearch——使用备忘

会飞的斧头 / 2023-07-28 / 原文

查询

GET
http://xxxxx:9200/user_list/_search

 

添加模板

POST
http://xxxxx:9200/user_list/_scripts/user_list_template
{
"script": {
"lang": "mustache",
"source": "{\"query\":{\"bool\":{\"must\":{{#toJson}}clauses{{/toJson}},\"filter\":{{#toJson}}filters{{/toJson}}}},\"sort\":{{#toJson}}sorts{{/toJson}},\"from\":\"{{from}}{{^from}}0{{/from}}\",\"size\":\"{{size}}{{^size}}10{{/size}}\"}"
}
}

 

查看模板

GET
http://xxxxx:9200/user_list/_scripts/user_list_template

 

用模板查询

POST
http://xxxxx:9200/user_list/_search/template
{"id":"user_list_template","params":{"clauses":[],"filters":[],"sorts":[]}}