Let's say I'm trying to search for 'Douglas' in any field. If I just do:
solr/query?q=Douglas
I get 0 responses, but if I do:
solr/query?q=firstname:Douglas
then I do get responses, why is this? I've also tried:
solr/query?q=Douglas&qf=firstname
which still gives me nothing. How do I just do a search for all fields? Then how do I 'boost' the relevancy of some fields? For example, if I search for Douglas, then people called Douglas should come up before items with the word 'Douglas' in their description.