Return-Path: Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: (qmail 61814 invoked from network); 4 Oct 2010 22:32:55 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 4 Oct 2010 22:32:55 -0000 Received: (qmail 89708 invoked by uid 500); 4 Oct 2010 22:32:54 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 89656 invoked by uid 500); 4 Oct 2010 22:32:54 -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 89647 invoked by uid 99); 4 Oct 2010 22:32:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Oct 2010 22:32:54 +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.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Oct 2010 22:32:53 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o94MWWGp004005 for ; Mon, 4 Oct 2010 22:32:33 GMT Message-ID: <18221791.539021286231552527.JavaMail.jira@thor> Date: Mon, 4 Oct 2010 18:32:32 -0400 (EDT) From: "Robert Muir (JIRA)" To: dev@lucene.apache.org Subject: [jira] Updated: (LUCENE-2529) always apply position increment gap between values In-Reply-To: <9832676.217731278433851943.JavaMail.jira@thor> 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-2529?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-2529: -------------------------------- Attachment: LUCENE-2529_nonsenseIncrements.patch attached is a patch for BaseTokenStreamTestCase that tests if the first value has a posInc=0 (nonsensical position increment). The synonymfilter from solr fails with the test, but I don't really care... there is no point in indexing your text if you are going to put useless values in the index... I still think we should throw hard exception here. > always apply position increment gap between values > -------------------------------------------------- > > Key: LUCENE-2529 > URL: https://issues.apache.org/jira/browse/LUCENE-2529 > Project: Lucene - Java > Issue Type: Bug > Components: Index > Affects Versions: 2.9.3, 3.0.2, 3.1, 4.0 > Environment: (I don't know which version to say this affects since it's some quasi trunk release and the new versioning scheme confuses me.) > Reporter: David Smiley > Assignee: Koji Sekiguchi > Priority: Minor > Fix For: 3.1, 4.0 > > Attachments: LUCENE-2529_always_apply_position_increment_gap_between_values.patch, LUCENE-2529_nonsenseIncrements.patch, LUCENE-2529_skip_posIncr_for_1st_token.patch, LUCENE-2529_skip_posIncr_for_1st_token.patch, LUCENE-2529_skip_posIncr_for_1st_token.patch, LUCENE-2529_test.patch > > Original Estimate: 1h > Remaining Estimate: 1h > > I'm doing some fancy stuff with span queries that is very sensitive to term positions. I discovered that the position increment gap on indexing is only applied between values when there are existing terms indexed for the document. I suspect this logic wasn't deliberate, it's just how its always been for no particular reason. I think it should always apply the gap between fields. Reference DocInverterPerField.java line 82: > if (fieldState.length > 0) > fieldState.position += docState.analyzer.getPositionIncrementGap(fieldInfo.name); > This is checking fieldState.length. I think the condition should simply be: if (i > 0). > I don't think this change will affect anyone at all but it will certainly help me. Presently, I can either change this line in Lucene, or I can put in a hack so that the first value for the document is some dummy value which is wasteful. -- 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: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org