Return-Path: Delivered-To: apmail-lucene-java-dev-archive@www.apache.org Received: (qmail 36984 invoked from network); 29 Jul 2009 12:56:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 29 Jul 2009 12:56:40 -0000 Received: (qmail 5341 invoked by uid 500); 29 Jul 2009 12:56:40 -0000 Delivered-To: apmail-lucene-java-dev-archive@lucene.apache.org Received: (qmail 5255 invoked by uid 500); 29 Jul 2009 12:56:39 -0000 Mailing-List: contact java-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@lucene.apache.org Delivered-To: mailing list java-dev@lucene.apache.org Received: (qmail 5247 invoked by uid 99); 29 Jul 2009 12:56:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Jul 2009 12:56:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Jul 2009 12:56:36 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id D0754234C044 for ; Wed, 29 Jul 2009 05:56:14 -0700 (PDT) Message-ID: <986595019.1248872174852.JavaMail.jira@brutus> Date: Wed, 29 Jul 2009 05:56:14 -0700 (PDT) From: "Koji Sekiguchi (JIRA)" To: java-dev@lucene.apache.org Subject: [jira] Updated: (LUCENE-1752) incorrect snippet returned with SpanScorer In-Reply-To: <133054944.1247831715062.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LUCENE-1752?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Koji Sekiguchi updated LUCENE-1752: ----------------------------------- Fix Version/s: 2.9 I'd like set 2.9. With the patch, highlighter works on our production environment perfectly. > incorrect snippet returned with SpanScorer > ------------------------------------------ > > Key: LUCENE-1752 > URL: https://issues.apache.org/jira/browse/LUCENE-1752 > Project: Lucene - Java > Issue Type: Bug > Components: contrib/highlighter > Affects Versions: 2.9 > Reporter: Koji Sekiguchi > Assignee: Mark Miller > Priority: Minor > Fix For: 2.9 > > Attachments: LUCENE-1752.patch > > > This problem was reported by my customer. They are using Solr 1.3 and uni-gram, but it can be reproduced with Lucene 2.9 and WhitespaceAnalyzer. > {panel:title=Query} > (f1:"a b c d" OR f2:"a b c d") AND (f1:"b c g" OR f2:"b c g") > {panel} > The snippet we expected is: > {panel} > x y z a b c d e f g b c g > {panel} > but we got: > {panel} > x y z a b c d e f g b c g > {panel} > Program to reproduce the problem: > {code} > public class TestHighlighter { > static final String CONTENT = "x y z a b c d e f g b c g"; > static final String PH1 = "\"a b c d\""; > static final String PH2 = "\"b c g\""; > static final String F1 = "f1"; > static final String F2 = "f2"; > static final String F1C = F1 + ":"; > static final String F2C = F2 + ":"; > static final String QUERY_STRING = > "(" + F1C + PH1 + " OR " + F2C + PH1 + ") AND (" > + F1C + PH2 + " OR " + F2C + PH2 + ")"; > static Analyzer analyzer = new WhitespaceAnalyzer(); > > public static void main(String[] args) throws Exception { > QueryParser qp = new QueryParser( F1, analyzer ); > Query query = qp.parse( QUERY_STRING ); > CachingTokenFilter stream = new CachingTokenFilter( analyzer.tokenStream( F1, new StringReader( CONTENT ) ) ); > Scorer scorer = new SpanScorer( query, F1, stream, false ); > Highlighter h = new Highlighter( scorer ); > System.out.println( "query : " + QUERY_STRING ); > System.out.println( h.getBestFragment( analyzer, F1, CONTENT ) ); > } > } > {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org For additional commands, e-mail: java-dev-help@lucene.apache.org