Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 23557200B85 for ; Thu, 15 Sep 2016 21:48:23 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 21DA8160AC6; Thu, 15 Sep 2016 19:48:23 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 695CB160ABA for ; Thu, 15 Sep 2016 21:48:22 +0200 (CEST) Received: (qmail 16376 invoked by uid 500); 15 Sep 2016 19:48:21 -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 16363 invoked by uid 99); 15 Sep 2016 19:48:21 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Sep 2016 19:48:21 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 404D32C0D59 for ; Thu, 15 Sep 2016 19:48:21 +0000 (UTC) Date: Thu, 15 Sep 2016 19:48:21 +0000 (UTC) From: "Michael McCandless (JIRA)" To: dev@lucene.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Resolved] (LUCENE-7439) Should FuzzyQuery match short terms too? MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 15 Sep 2016 19:48:23 -0000 [ https://issues.apache.org/jira/browse/LUCENE-7439?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael McCandless resolved LUCENE-7439. ---------------------------------------- Resolution: Fixed > Should FuzzyQuery match short terms too? > ---------------------------------------- > > Key: LUCENE-7439 > URL: https://issues.apache.org/jira/browse/LUCENE-7439 > Project: Lucene - Core > Issue Type: Improvement > Reporter: Michael McCandless > Assignee: Michael McCandless > Fix For: master (7.0), 6.3 > > Attachments: LUCENE-7439.patch, LUCENE-7439.patch, LUCENE-7439.patch > > > Today, if you ask {{FuzzyQuery}} to match {{abcd}} with edit distance 2, it will fail to match the term {{ab}} even though it's 2 edits away. > Its javadocs explain this: > {noformat} > *

NOTE: terms of length 1 or 2 will sometimes not match because of how the scaled > * distance between two terms is computed. For a term to match, the edit distance between > * the terms must be less than the minimum length term (either the input term, or > * the candidate term). For example, FuzzyQuery on term "abcd" with maxEdits=2 will > * not match an indexed term "ab", and FuzzyQuery on term "a" with maxEdits=2 will not > * match an indexed term "abc". > {noformat} > On the one hand, I can see that this behavior is sort of justified in that 50% of the characters are different and so this is a very "weak" match, but on the other hand, it's quite unexpected since edit distance is such an exact measure so the terms should have matched. > It seems like the behavior is caused by internal implementation details about how the relative (floating point) score is computed. I think we should fix it, so that edit distance 2 does in fact match all terms with edit distance <= 2. -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org