I saw the section in Elasticsearch documentation (6.8) about span queries,
The request and result is similar to some of the Term level queries, but it mention the the span is "low-level positional" which smell like better preference (maybe I wrong).
The question is if I want to use pure term query ( for example match the user with the name),
there is a big difference in the performance or in other thing that I prefer one option on another?
Examples:
GET /_search
{
"query": {
"span_term" : { "user" : "kimchy" }
}
}
VS
POST _search
{
"query": {
"term" : { "user" : "kimchy" }
}
}