Return-Path: Delivered-To: apmail-lucene-solr-user-archive@locus.apache.org Received: (qmail 9565 invoked from network); 27 Mar 2007 21:30:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Mar 2007 21:30:08 -0000 Received: (qmail 46531 invoked by uid 500); 27 Mar 2007 21:30:15 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 46153 invoked by uid 500); 27 Mar 2007 21:30:15 -0000 Mailing-List: contact solr-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-user@lucene.apache.org Delivered-To: mailing list solr-user@lucene.apache.org Received: (qmail 46144 invoked by uid 99); 27 Mar 2007 21:30:15 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Mar 2007 14:30:15 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of yseeley@gmail.com designates 209.85.134.191 as permitted sender) Received: from [209.85.134.191] (HELO mu-out-0910.google.com) (209.85.134.191) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Mar 2007 14:30:06 -0700 Received: by mu-out-0910.google.com with SMTP id i10so3583130mue for ; Tue, 27 Mar 2007 14:29:45 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=V6xMPbsWJYrvaIBy9O0gYgpEk2lwzk69e6AOWOfgiTswhVYUbjE+P/cBcz9Ibap9833HQFQBE15rz5ARIwNOx77+38Sq7BWIPYrjMmMxs3rom8txlGeuWFURw8cuHue/CnLEJVYXf669Vo0pYzXFl3dzDmVa9K3TtlLKGJKrQIQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=mgknS3SqezKIiUSLmQaEs4QulsfyfMA78h+o4xRnj2ZGSlX4HcPe90qY8y2ZmvrQYxWZO0nnSKSRCpvAseO42uy388ZuaQX8SC0nd4UyZNKCb8Q0b4OWjKqXG9qsQz6xsnQ6S/UFI1TntBx3MSxNq3eaLL9YoL0s0XNeknwf7E8= Received: by 10.82.136.4 with SMTP id j4mr17136235bud.1175030984602; Tue, 27 Mar 2007 14:29:44 -0700 (PDT) Received: by 10.82.126.8 with HTTP; Tue, 27 Mar 2007 14:29:44 -0700 (PDT) Message-ID: Date: Tue, 27 Mar 2007 17:29:44 -0400 From: "Yonik Seeley" Sender: yseeley@gmail.com To: solr-user@lucene.apache.org Subject: Re: Reposting unABLE to match In-Reply-To: <46093B81.9020505@NeemTree.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <46093B81.9020505@NeemTree.com> X-Google-Sender-Auth: 98cff92596ae746e X-Virus-Checked: Checked by ClamAV on apache.org On 3/27/07, Shridhar Venkatraman wrote: > The phrase "unABLE TO CONNECT" does not match in my system. However, any > combination of case is ok as long as the first letter 'U" is in > uppercase. > > Bad-> uNABLE, unABLE, unaBLE.... > Gud-> Unable, UNable, UNAble... > > Any ideas ? WordDelimiterFilter lowercase to uppercase transition => split uppercase to lowercase => no split (so capitalized words, and words like IBMs won't cause a split). Either configure WordDelimiterFilter differently (use catenation but not generation), or remove it altogether. Don't forget to re-index after you have made changes. -Yonik