Does the order of fields matter in a lucene query?

For instance,

q = A && B && C

Lets say A appears in a million documents, B in 10000, C in 1000.

while the results would be identical irrespective of the order in which you
AND
A, B and C, will the response times of the following queries differ in any
way?

C && B && A
A && B && C

Does Lucene/Solr pick the best query execution plan in terms of both space
and time for a given query?

-Deepak

Reply via email to