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 37A85DA30 for ; Tue, 30 Oct 2012 17:24:15 +0000 (UTC) Received: (qmail 57815 invoked by uid 500); 30 Oct 2012 17:24:13 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 57650 invoked by uid 500); 30 Oct 2012 17:24:13 -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 57606 invoked by uid 99); 30 Oct 2012 17:24:12 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Oct 2012 17:24:12 +0000 Date: Tue, 30 Oct 2012 17:24:12 +0000 (UTC) From: "Robert Muir (JIRA)" To: dev@lucene.apache.org Message-ID: <374640872.45420.1351617852337.JavaMail.jiratomcat@arcas> In-Reply-To: <1251097258.44223.1351598173825.JavaMail.jiratomcat@arcas> Subject: [jira] [Resolved] (LUCENE-4514) Make Scorer.freq() well defined: number of matches in doc 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-4514?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir resolved LUCENE-4514. --------------------------------- Resolution: Fixed Fix Version/s: 5.0 4.1 > Make Scorer.freq() well defined: number of matches in doc > --------------------------------------------------------- > > Key: LUCENE-4514 > URL: https://issues.apache.org/jira/browse/LUCENE-4514 > Project: Lucene - Core > Issue Type: Task > Components: core/query/scoring > Reporter: Robert Muir > Fix For: 4.1, 5.0 > > Attachments: LUCENE-4514.patch > > > Today Scorer.freq() is somewhat useless: because in general it returns the number of matches, but other times it returns a strange floating point value (essentially an intermediate score). > I think it should just return the number of matches in the document. This makes it well-defined and useful to consumers (e.g. if they are going to iterate over the positions or whatever in the future). > {noformat} > /** Returns number of matches for the current document. > - * This returns a float (not int) because > - * SloppyPhraseScorer discounts its freq according to how > - * "sloppy" the match was. > * > * @lucene.experimental */ > - public abstract float freq() throws IOException; > + public abstract int freq() throws IOException; > {noformat} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators 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