tflobbe commented on a change in pull request #1456: URL: https://github.com/apache/lucene-solr/pull/1456#discussion_r416956723
########## File path: solr/core/src/java/org/apache/solr/handler/component/QueryComponent.java ########## @@ -401,6 +403,14 @@ public void process(ResponseBuilder rb) throws IOException doProcessUngroupedSearch(rb, cmd, result); } + private int getMinExactHits(SolrParams params) { + long minExactHits = params.getLong(CommonParams.MIN_EXACT_HITS, Integer.MAX_VALUE); Review comment: I plan to move the default value to a solrconfig config in a future PR, for now, MAX_VALUE (disabled) ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org