Return-Path: X-Original-To: apmail-lucene-dev-archive@www.apache.org Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1058F8453 for ; Mon, 22 Aug 2011 19:06:54 +0000 (UTC) Received: (qmail 71239 invoked by uid 500); 22 Aug 2011 19:06:52 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 70732 invoked by uid 500); 22 Aug 2011 19:06:51 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 70720 invoked by uid 99); 22 Aug 2011 19:06:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Aug 2011 19:06:51 +0000 X-ASF-Spam-Status: No, hits=-2000.5 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Aug 2011 19:06:50 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id E0D1DCAEBC for ; Mon, 22 Aug 2011 19:06:29 +0000 (UTC) Date: Mon, 22 Aug 2011 19:06:29 +0000 (UTC) From: "Hoss Man (JIRA)" To: dev@lucene.apache.org Message-ID: <227039841.2309.1314039989917.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <1881106056.1870.1314036090179.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Commented] (LUCENE-3395) FreqFilteringScorerWrapper and min/max freq options on TermQuery MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/LUCENE-3395?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13088936#comment-13088936 ] Hoss Man commented on LUCENE-3395: ---------------------------------- bq. Because if we hook it straight into this query, then someone will want it in SpanTermQuery, and PayloadTermQuery, and PhraseQuery, and their own queries???... They might -- but like i said, i was focused on what seemed like the common/simple case. "make the common case easy, and the uncommon case 'possible'" bq. Yes! I think we should make a query that wraps another query to do this? Similar to ConstantScoreQuery? I'm totally on board with the idea, i just don't really understand what the implementation should look like -- not because i don't think it's possible, i just don't personally understand how to write it. Would the weight of the wrapper query just proxy directly to the inner query for all of the methods except scorer(..) ? > FreqFilteringScorerWrapper and min/max freq options on TermQuery > ---------------------------------------------------------------- > > Key: LUCENE-3395 > URL: https://issues.apache.org/jira/browse/LUCENE-3395 > Project: Lucene - Java > Issue Type: New Feature > Reporter: Hoss Man > Attachments: LUCENE-3395.patch > > > A Solr User was asking about how specify a minimum tf when searching for a term (ie: documents matching "dog" at least 3 times). > Based on a conversation with rmuir on IRC, that led me to realize that we now explicitly expose a general "freq()" method on Scorer, and that min/max freq constraints could be implemented as a general Scorer Wrapper. > I propose that we add such a wrapper, and add setMinFreq(float)/setMaxFreq(float) methods to TermQuery (similar to the minNumShouldMatches and disableCoord type setters in BooleanQuery) that cause it to be used automatically. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org