Please note: I am using ElasticSearch 1.5.0
For the sake of providing an example, I have placed a single query clause inside a bool filter.
{
"filter": {
"bool" : {
"must": [
{
"query": {
"match": {
"my_field": "my_value"
}
}
}
]
}
}
}
My question is that when the query clause is to be executed, will it perform the scoring task even though the query is present inside a filter?