Return-Path: Delivered-To: apmail-lucene-solr-user-archive@minotaur.apache.org Received: (qmail 77204 invoked from network); 3 Dec 2010 16:32:37 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 3 Dec 2010 16:32:37 -0000 Received: (qmail 26303 invoked by uid 500); 3 Dec 2010 16:32:35 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 26078 invoked by uid 500); 3 Dec 2010 16:32:32 -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 26070 invoked by uid 99); 3 Dec 2010 16:32:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Dec 2010 16:32:31 +0000 X-ASF-Spam-Status: No, hits=2.3 required=10.0 tests=FREEMAIL_FROM,RFC_ABUSE_POST,SPF_HELO_PASS,SPF_SOFTFAIL,T_TO_NO_BRKTS_FREEMAIL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: softfail (nike.apache.org: transitioning domain of vetteparty@hotmail.com does not designate 216.139.236.158 as permitted sender) Received: from [216.139.236.158] (HELO kuber.nabble.com) (216.139.236.158) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Dec 2010 16:32:25 +0000 Received: from ben.nabble.com ([192.168.236.152]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1POYYG-0008R4-Bp for solr-user@lucene.apache.org; Fri, 03 Dec 2010 08:32:04 -0800 Date: Fri, 3 Dec 2010 08:32:04 -0800 (PST) From: PeterKerk To: solr-user@lucene.apache.org Message-ID: <1291393924362-2012509.post@n3.nabble.com> In-Reply-To: References: <1291391181137-2012207.post@n3.nabble.com> Subject: Re: finding exact case insensitive matches on single and multiword values MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org You are right, this is what I see when I append the debug query (very very useful btw!!!) in old situation: city:den title:haag PhraseQuery(themes:"hotel en restaur") I then changed the schema.xml to: I then tried adding parentheses: http://localhost:8983/solr/db/select/?indent=on&facet=true&fq=city:(den+haag)&q=*:*&start=0&rows=25&fl=id,title,friendlyurl,city&facet.field=city also tried (without +): http://localhost:8983/solr/db/select/?indent=on&facet=true&fq=city:(den haag)&q=*:*&start=0&rows=25&fl=id,title,friendlyurl,city&facet.field=city Then I get: city:den city:haag And still 0 results But as you can see the query is split up into 2 separate words, I dont think that is what I need? -- View this message in context: http://lucene.472066.n3.nabble.com/finding-exact-case-insensitive-matches-on-single-and-multiword-values-tp2012207p2012509.html Sent from the Solr - User mailing list archive at Nabble.com.