Multiple Query clauses impacting result

2011-08-02 Thread Saurabh Gokhale
Hi All, As I add new clauses to the Boolean Query, my queryNorm value goes down which is impacting the results. For example: (The complete stand alone application attached with the email. I am using Lucene 3.1.0) I indexed following 6 documents addDoc("author1", "My first book", "123"); --> 1

RE: Multiple Query clauses impacting result

2011-08-02 Thread Uwe Schindler
Hi Saurabh, There is nothing wrong with Lucene, the problem is generally that you try to see scores as percentages, which they aren't. Scores are arbitrary values, only used for sorting search results, but never to compare results between different queries. It's in fact easy possible to also ge