- I am using solr 3.3.0 working out of the box using the example folder
- solrQueryParser defaultOperator = "OR"
My problem is that Solr doesn't seem to be returning good results when I search for a multiple word phrase.
The following search return no results.
However, when I search for roof or fixing, they both return a few good results.
- http://localhost:8080/solr/select/?q=roof returns 4 results
- http://localhost:8080/solr/select/?q=fixing returns 3 results
On the query for "roof fixing", I expect solr to return 7 results. The 4 records for roof and 3 records for fixing.
Is any special configuration necessary for that to happen?