What typically makes searches case insensitive are Analyzers that
lowercase/normalize tokens, perhaps with LowerCaseTokenizers.  Since
Field.Keyword doesn't get analyzed, you'd have to manually
normalize/lowercase field values before indexing, or just add the raw +
the normalized value under the same field name.  It looks like you'll
have to reindex.

Otis


--- Srimant Mishra <[EMAIL PROTECTED]> wrote:
> Hi all, 
> 
>  
> 
>               I have a field that has been populated as a keyword
> e.g.
> populated via doc.add(Field.Keyword("ID", "Xyz Abc"));
> 
>  
> 
>               Is it possible to perform a case insensitive query that
> is if
> I do a search for xyz, the document is returned.
> 
>  
> 
>  
> 
>               I know that this is possible for UnStored fields as
> they are
> stored in lower case formats. 
> 
>  
> 
>  
> 
> -Srimant
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to