Hi In our search application we have one facet filter (Status)
Each status value corresponds to multiple values in the Solr database Example : Status : Initialized --> status in solr = 11I, 12I, 13I, 14I, ... On status value click, search is re-fired with fq filter: fq: status:(11I OR 12I OR 13I ....) This was very very inefficient. Filter query response time was longer than same search without filter! We have changed status value in Solr database for corresponding to visual filter values. In consequence, there is no OR in the fq filter. The performance is better now. What is the reason? Thanks!