Explain

开启执行计划可以查看每个命中文档是如何评分的。

GET /_search
{
    "explain": true,
    "query" : {
        "term" : { "user" : "kimchy" }
    }
}

Last updated