Solr version 6.1.0
Created a schema with some fields as indexed=true
on which I specifically want the solr main-query q
to search.
And also added more fields, which I just wanted to select, so marked them as stored=true
and indexed=false
.
Issue now is that, main query q=India
is searching on non-indexed fields like country, which I have specified in the image.
It is selecting the non-indexed field only when I specify the full value of non-indexed field.
How can I restrict solr from searching on non-index fields?