Re: error when query contains numbers

2005-03-31 Thread Erik Hatcher
: Erik Hatcher [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 30, 2005 8:58 PM To: java-user@lucene.apache.org Subject: Re: error when query contains numbers On Mar 30, 2005, at 8:05 PM, Omar Didi wrote: the .toString() looks excactly like the query I enter: if I search for yahoo AND 200 it returns

RE: error when query contains numbers

2005-03-31 Thread Omar Didi
I did index new documents and they are fine. thanks for your help Eric. -Original Message- From: Erik Hatcher [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 5:20 PM To: java-user@lucene.apache.org Subject: Re: error when query contains numbers On Mar 31, 2005, at 5:00 PM, Omar

Re: error when query contains numbers

2005-03-30 Thread Erik Hatcher
On Mar 30, 2005, at 8:05 PM, Omar Didi wrote: the .toString() looks excactly like the query I enter: if I search for yahoo AND 200 it returns 0 hits. I am sure there are documents that have 200 hundreds in them. The analyzer I am using is a custom analyzer that has a list of stop words. I don t

RE: error when query contains numbers

2005-03-30 Thread Omar Didi
[mailto:[EMAIL PROTECTED] Sent: Wed 3/30/2005 8:58 PM To: java-user@lucene.apache.org Subject: Re: error when query contains numbers On Mar 30, 2005, at 8:05 PM, Omar Didi wrote: the .toString() looks excactly like the query I enter: if I search for yahoo AND 200 it returns 0 hits. I am sure

Re: error when query contains numbers

2005-03-30 Thread Erik Hatcher
On Mar 30, 2005, at 4:41 PM, Omar Didi wrote: I am using a QueryParser to search the index. when the query has numbers, i don t get any results?? any suggestions?? What is the .toString of the Query object instance returned from QueryParser? What Analyzer are you using? How did you index the

RE: error when query contains numbers

2005-03-30 Thread Omar Didi
the .toString() looks excactly like the query I enter: if I search for yahoo AND 200 it returns 0 hits. I am sure there are documents that have 200 hundreds in them. The analyzer I am using is a custom analyzer that has a list of stop words. I don t know much about the way data was indexed, I