Unable to get similar results with a filter applied specific field
up vote
1
down vote
favorite
I am working on Elastic Search 6.4.2. I am uploading my index and mapping and my searchable fields are title,content and I want to filter the results by "test" field. The values in the test fields are abce, ghij, klmn . I want to filter the results with field "test" and value "ghij" . PUT /test_index { "settings": { "index": { "number_of_shards": 4, "number_of_replicas": 1, "refresh_interval": "60s", "analysis" : { "analyzer" : { "my_analyzer" : { "tokenizer" : "standard", "filter" : ["standard", "l...