We're running Apache Solr v3.1 and SolrJ is our client.
We're passing multiple Arbitrary Faceting Query (facet.query
) to get the
number of matching documents (the facet count) evaluated over the search
results in a single Solr query. My use case demands the actual matching
facet results/documents/fields also along with facet count.
My question is, is it possible to get facet query matching results along with facet count in a single Solr query call?
docs
and the facets are returned infaceting
(alongside the docs). Do extract the HTTP calls SolrJ makes and run them in your browser. – Jesvin Josedocs
, but my question here is I want to get facet count's results as well in single Solr query call. Hope I made this clear. – Gnanam