Re: character like &,+,.. getting ignored in search

2007-03-16 Thread ruchi thakur
Thanks Eric. I will try out the suggestions. I am using StopAnalyzer. Regards, Ruchi On 3/16/07, Erick Erickson <[EMAIL PROTECTED]> wrote: What analyzers are you using at index and search time? I suspect that the '&' is being removed both at index and search. So, you've only indexed the tokens

Re: character like &,+,.. getting ignored in search

2007-03-16 Thread Erick Erickson
What analyzers are you using at index and search time? I suspect that the '&' is being removed both at index and search. So, you've only indexed the tokens 'a' and 'b' and by the time you get out of the query parser, you're only searching for terms 'a' 'b'. Did you bother using query.toString() t