Hi, I've noticed some bad performance in faceted browsing, when the query is empty (so the MatchAllDocsQuery is used) and there are only filter queries. An example of the search url is:
http://hostname:8080/solr/select/?q=&qt=dismax&fq=color:%23000000 One idea is to switch to the StandardRequest in such case, by putting filters into the query filed, like "q=color:%23000000". But the downside is the boost functions for dismax are lost and extra code maintenance. Any ideas? Thanks, Guangwei