RE: NOT_ANALYZED field

2009-04-28 Thread CM Wong
Thanks a lot. I am now indexing my id in lowercase and my problem is solved. Regards, CM --- Uwe Schindler wrote: > That is normal. Fields that are not analyzed are indexed as single tokens. > The anaylzer does not only tokenize the text, it also transforms it (e.g. to > lower case). If you e

RE: NOT_ANALYZED field

2009-04-28 Thread Uwe Schindler
That is normal. Fields that are not analyzed are indexed as single tokens. The anaylzer does not only tokenize the text, it also transforms it (e.g. to lower case). If you enter your search using the query parser, the entered search terms are analyzed! And for full text engines, the analyzer for qu

Re: NOT_ANALYZED field

2009-04-28 Thread Erick Erickson
Well, you haven't shown us your program, so it's hard to tell But my first uninformed guess would be that the case of your search doesn't exactly match the case you indexed when you add letters to your IDs. We need to see the search code particularly, including the analyzers you use (a snippe