List of usage examples for org.apache.solr.request SimpleFacets getFacetFieldCounts
@SuppressWarnings("unchecked") public NamedList<Object> getFacetFieldCounts() throws IOException, SyntaxError
From source file:org.tallison.solr.search.concordance.SolrConcordanceBase.java
License:Apache License
protected static NamedList doFacetSearch(DocSet docSet, SolrParams params, SolrQueryRequest req) throws IOException, SyntaxError { SimpleFacets f = new SimpleFacets(req, docSet, params, null); NamedList counts = f.getFacetFieldCounts(); return counts; }