ElasticSearch搜索模版
作者:
秦汉邮侠 | 来源:发表于
2019-10-15 11:22 被阅读0次
构造数据
PUT twiter/doc/1
{
"title":"search for these words"
}
PUT book/doc/1
{
"title":"search for these words"
}
注册模版
POST _scripts/twitertemplate
{
"script": {
"lang": "mustache",
"source": {
"query": {
"match": {
"title": "{{query_string}}"
}
}
}
}
}
使用模版
GET twiter/_search/template/
{
"id": "twitertemplate",
"params": {
"query_string": "search for these words"
}
}
GET _search/template/
{
"id": "twitertemplate",
"params": {
"query_string": "search for these words"
}
}
本文标题:ElasticSearch搜索模版
本文链接:https://www.haomeiwen.com/subject/mxojmctx.html
网友评论