I am trying to understand why there is a difference in the following behaviors when searching using 'q' and 'df'. In my understanding, if 'q' is not specified, it will default to 'df'.
Example Aim of search is to look for 'Workout plans' in 'title' field of documents.
Search method #1 http://localhost:8983/solr/workoutstuff/select?q=title:Workout%20Plans&wt=json
Search method #2 http://localhost:8983/solr/workoutstuff/select?df=title&q=Workout%20Plans&wt=json
Results
There are results in Search Method #1 but no results in Search Method #2.
I would like to understand why. Thanks!