RE: Case Insensitive but not Tokenized

2007-06-07 Thread Anna Putnam
Hoss, The KeywordTokenizer and LowerCaseFilter worked great and was exactly what I needed. Thanks! -Original Message- From: Chris Hostetter [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 06, 2007 11:25 AM To: java-user@lucene.apache.org Subject: Re: Case Insensitive but not Tokenized

Re: Case Insensitive but not Tokenized

2007-06-06 Thread Chris Hostetter
: For now, I am storing both the exact phrase (as is, for retrieval) and : the string lower-cased (to search against) with no analyzers in the : index. When I search, I lower-case my query string and search against : my lower-cased index, I give the matching exact phrase back to the user. : This

Case Insensitive but not Tokenized

2007-06-06 Thread Anna Putnam
I am trying to implement a prefix query search where I want the searching to be case insensitive but not tokenized (I want to preserve exact phrases). For now, I am storing both the exact phrase (as is, for retrieval) and the string lower-cased (to search against) with no analyzers in the