Does the order of fields in the search query matter in Solr?
Query 1:
field1:value1 field2:value2
Query 1 reversed:
field2:value2 field1:value1
.
Does it make a difference? Would it be better for performance to use the field first which yields the smallest sub result set? Or does Solr/Lucene handle this all by itself?
Groups:
Login to post comments

In D6 we've moved to filter queries with dismax
http://wiki.apache.org/solr/CommonQueryParameters#head-6522ef80f22d0e50d...
http://wiki.apache.org/solr/DisMaxRequestHandler
http://drupal.org/node/323015
I don't know the answer to your specific questions.