Searched defs:mincount (Results 1 - 2 of 2) sorted by relevance

/lucene-3.6.0/solr/core/src/java/org/apache/solr/request/
H A DSimpleFacets.java246 Integer mincount = params.getFieldInt(field, FacetParams.FACET_MINCOUNT);
247 if (mincount==null) {
249 // mincount = (zeros!=null && zeros) ? 0 : 1;
250 mincount = (zeros!=null && !zeros) ? 1 : 0;
281 counts = getFacetTermEnumCounts(searcher, base, field, offset, limit, mincount,missing,sort,prefix);
285 counts = uif.getCounts(searcher, base, offset, limit, mincount,missing,sort,prefix);
289 counts = getFieldCacheCounts(searcher, base, field, offset,limit, mincount, missing, sort, prefix);
367 public static NamedList getFieldCacheCounts(SolrIndexSearcher searcher, DocSet docs, String fieldName, int offset, int limit, int mincount, boolean missing, String sort, String prefix) throws IOException { argument
405 if (nTerms>0 && docs.size() >= mincount) {
428 int min=mincount
482 getFacetTermEnumCounts(SolrIndexSearcher searcher, DocSet docs, String field, int offset, int limit, int mincount, boolean missing, String sort, String prefix) argument
[all...]
H A DUnInvertedField.java447 public NamedList getCounts(SolrIndexSearcher searcher, DocSet baseDocs, int offset, int limit, Integer mincount, boolean missing, String sort, String prefix) throws IOException { argument
458 if (baseSize >= mincount) {
565 int min=mincount-1; // the smallest value in the top 'N' values
625 if (mincount<=0) {
626 // if mincount<=0, then we won't discard any terms and we know exactly
634 if (c<mincount || --off>=0) continue;

Completed in 14 milliseconds