elasticsearch 单个文档的_explain
2017-02-21 本文已影响33人
阳春是你
curl -XGET es_host:9200/ware_index/ware_type/id/_explain?pretty -d '
{
"query" : {
"bool" : {
"must" : [ {
"term" : {
"text" : "油"
}
} ],
"should" : {
"term" : {
"text" : "5L"
}
}
}
}
}'