mirror of https://github.com/apache/lucene.git
SOLR-778 -- SolrQuery#getFacetMinCount() returns value of facet limit
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@696926 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
458f07b7ad
commit
9fef1d8ddc
|
@ -8,7 +8,31 @@ solrj is a java client for the solr search engine.
|
|||
|
||||
$Id$
|
||||
|
||||
================== Release 1.3-dev ==================
|
||||
================== Release 1.4-dev ==================
|
||||
Upgrading from Solr 1.3
|
||||
-----------------------
|
||||
|
||||
Detailed Change List
|
||||
----------------------
|
||||
|
||||
New Features
|
||||
----------------------
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
||||
|
||||
Bug Fixes
|
||||
----------------------
|
||||
|
||||
1. SOLR-778: SolrQuery#getFacetMinCount() returns value of facet limit
|
||||
(Kohei Taketa via shalin)
|
||||
|
||||
Documentation
|
||||
----------------------
|
||||
|
||||
|
||||
================== Release 1.3.0 20080915 ==================
|
||||
|
||||
Status
|
||||
------
|
||||
|
|
|
@ -181,7 +181,7 @@ public class SolrQuery extends ModifiableSolrParams
|
|||
* @return facet minimum count or default of 1
|
||||
*/
|
||||
public int getFacetMinCount() {
|
||||
return this.getInt(FacetParams.FACET_LIMIT, 1);
|
||||
return this.getInt(FacetParams.FACET_MINCOUNT, 1);
|
||||
}
|
||||
|
||||
public SolrQuery setMissing(String fld) {
|
||||
|
|
Loading…
Reference in New Issue