Lucene Search result (scoring )

2007-06-14 Thread Yatin Soni
Hi, We are using Lucene as search engine and I have a question regarding the scoring of search results, I had given a example for it, Example :--> suppose we have four Items on which we have indexed, ///

Re: Lucene Search result (scoring )

2007-06-15 Thread Donna L Gresh
new myself. Donna Gresh "Yatin Soni" <[EMAIL PROTECTED]> 06/14/2007 12:53 PM Please respond to java-user@lucene.apache.org To cc Subject Lucene Search result (scoring ) Hi, We are using Lucene as search engine and I have a question regarding the scoring of sea

Re: Lucene Search result (scoring )

2007-06-15 Thread Chris Hostetter
the "explain" method on a Searcher, and the Explanation classes can explain everything baout how/why a particular document in a particular index gets a particular score for a particular search. The only tricky thing about it is understanding that it refers to the "raw" scores (what you seem to be

Re: Lucene Search result (scoring )

2007-06-18 Thread Yatin Soni
2007 8:47 AM Subject: Re: Lucene Search result (scoring ) > > the "explain" method on a Searcher, and the Explanation classes can > explain everything baout how/why a particular document in a particular > index gets a particular score for a particular search. The only trick

Re: Lucene Search result (scoring )

2007-06-18 Thread Chris Hostetter
: I had tried with Explaination but didn't get the desired results.Can you : give me the brief demo code based on the result order by the no of matching : terms . the Explanation class will not change your scores to give you results in any particular way you might want -- it just explains what fa