Re: lucene 2.4.1 : document in index but not returned in search

2009-10-02 Thread Felipe Lobo
Your are wright! The docs didn't came because the score was 0. I had to review my boosting rules to fix it. On Fri, Oct 2, 2009 at 4:15 PM, Anshum wrote: > Hi Priya, > You are using different analyzers for searching and indexing in case of > CH/KR locales. Could you give the snippet of the doc

Re: lucene 2.4.1 : document in index but not returned in search

2009-10-02 Thread Anshum
Hi Priya, You are using different analyzers for searching and indexing in case of CH/KR locales. Could you give the snippet of the doc you are trying to index and search for. Also, get a print of keyQuery to get an idea of what exactly is getting searched post (query)analysis. That might give a bet

Re: lucene 2.4.1 : document in index but not returned in search

2009-10-02 Thread Felipe Lobo
I had similar problem, it was the score of the documents, they were 0, so they didn't came when i searched! Check your score docs! On Fri, Oct 2, 2009 at 2:12 PM, N Hira wrote: > Which analyzer do you use in luke? > > The general practice is to use the same analyzer for indexing and > searching.

Re: lucene 2.4.1 : document in index but not returned in search

2009-10-02 Thread N Hira
Which analyzer do you use in luke? The general practice is to use the same analyzer for indexing and searching. Good luck. -h - Original Message From: Rathinapriya Nagalingam To: java-user@lucene.apache.org Sent: Friday, October 2, 2009 10:51:42 AM Subject: lucene 2.4.1 : document i