Re: Facing problem with the FieldType of UniqueField

2008-02-14 Thread Chris Hostetter
Bottomline: it's very hard to get everything right with having a uniqueKey field that uses TextField. if your goal is to let your users do case insnsitive or "single word" queries on your uniqueKey field, just just copyFiled to clone it into something more search friendly. -Hoss

Re: Facing problem with the FieldType of UniqueField

2008-02-14 Thread Rishabh Joshi
Ryan, Using the KeywordTokenizer does not help. And there are not any spaces in the unique keys. the keys are alpha numeric. E.g.: AA-23-E1 Regards, Rishabh On Thu, Feb 14, 2008 at 10:28 PM, Ryan McKinley <[EMAIL PROTECTED]> wrote: > > > I noticed this happened because the field type was "strin

Re: Facing problem with the FieldType of UniqueField

2008-02-14 Thread Ryan McKinley
I noticed this happened because the field type was "string". I then changed it to a custom text type and had specified only the whitespace tokenizer and lowercase filter. It worked. The users were able to search on the are there spaces in your unique key? Try using the KeywordTokenizer -- th