: But there is a workaround: : 1) Do a normal query without facets (you only need to request doc ids : at this point) : 2) Collect all the IDs of the documents returned : 3) Do a second query for all fields and facets, adding a filter to : restrict result to those IDs collected in step 2.
an easier solution, if you really just want the counts based on the data from th page the user is looking at, is to count up the values in your UI from the stored fields you get back. (This is the type of thing that falls into the general category of "stuff the client can do just as easily as Solr" so there isn't really any reason to consider implementing it in/with Solr.) -Hoss