RE: case-insensitive string type

2010-01-13 Thread Harsch, Timothy J. (ARC-TI)[PEROT SYSTEMS]
ir treatment of character case? -Original Message- From: Ahmet Arslan [mailto:iori...@yahoo.com] Sent: Wednesday, January 13, 2010 12:18 PM To: solr-user@lucene.apache.org Subject: RE: case-insensitive string type > That seems to work. > > But why?  Does string type not support

RE: case-insensitive string type

2010-01-13 Thread Ahmet Arslan
> That seems to work. > > But why?  Does string type not support > LowerCaseFilterFactory?  Or KeywordTokenizerFactory? From from apache-solr-1.4.0\example\solr\conf\schema.xml : "The StrField type is not analyzed, but indexed/stored verbatim." "solr.TextField allows the specification of custo

RE: case-insensitive string type

2010-01-13 Thread Harsch, Timothy J. (ARC-TI)[PEROT SYSTEMS]
That seems to work. But why? Does string type not support LowerCaseFilterFactory? Or KeywordTokenizerFactory? -Original Message- From: Ahmet Arslan [mailto:iori...@yahoo.com] Sent: Wednesday, January 13, 2010 11:51 AM To: solr-user@lucene.apache.org Subject: RE: case-insensitive

RE: case-insensitive string type

2010-01-13 Thread Harsch, Timothy J. (ARC-TI)[PEROT SYSTEMS]
ue as case preserved in both the string field and the string_ci field support this? -Original Message- From: Harsch, Timothy J. (ARC-TI)[PEROT SYSTEMS] [mailto:timothy.j.har...@nasa.gov] Sent: Wednesday, January 13, 2010 11:35 AM To: solr-user@lucene.apache.org Subject: RE: case-insensitive s

RE: case-insensitive string type

2010-01-13 Thread Ahmet Arslan
> The value in the srcANYSTRStrCI field > is "miXCAse or LowER" according to Luke. Can you try this fieldType (that uses class="solr.TextField") declaration and re-start tomcat & re-index:

RE: case-insensitive string type

2010-01-13 Thread Harsch, Timothy J. (ARC-TI)[PEROT SYSTEMS]
..@nasa.gov] Sent: Wednesday, January 13, 2010 11:28 AM To: solr-user@lucene.apache.org Subject: RE: case-insensitive string type I considered that, but I'm also having the issue that I can't get an exact match as case insensitive either. -Original Message- From: Rob Casson [mailto

RE: case-insensitive string type

2010-01-13 Thread Harsch, Timothy J. (ARC-TI)[PEROT SYSTEMS]
dnesday, January 13, 2010 11:28 AM To: solr-user@lucene.apache.org Subject: RE: case-insensitive string type I considered that, but I'm also having the issue that I can't get an exact match as case insensitive either. -Original Message- From: Rob Casson [mailto:rob.cas...@gmail.com]

RE: case-insensitive string type

2010-01-13 Thread Harsch, Timothy J. (ARC-TI)[PEROT SYSTEMS]
I considered that, but I'm also having the issue that I can't get an exact match as case insensitive either. -Original Message- From: Rob Casson [mailto:rob.cas...@gmail.com] Sent: Wednesday, January 13, 2010 11:26 AM To: solr-user@lucene.apache.org Subject: Re: case-insensit

Re: case-insensitive string type

2010-01-13 Thread Erick Erickson
What do you get when you add "&debugQuery=on" to your lower-case query? And does Luke show you what you expect in the index? On Wed, Jan 13, 2010 at 2:18 PM, Harsch, Timothy J. (ARC-TI)[PEROT SYSTEMS] wrote: > Hi I have a field: > > multiValued="true" /> > > With type definition: >

Re: case-insensitive string type

2010-01-13 Thread Rob Casson
from http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters "On wildcard and fuzzy searches, no text analysis is performed on the search word." i'd just lowercase the wildcard-ed search term in your client code, before you send it to solr. hth, rob On Wed, Jan 13, 2010 at 2:18 PM, Hars