Hi sajid,

As you already boost data at indexing time...
You can boost query at search time...
eg. If you are firing boolean query and phrasequery...you might need to boost phrasequery....

PhraseQuery pq = new PhraseQuery();
pq.setBoost(2.0f);

Thanks.
Bhavin pandya

----- Original Message ----- From: "Sajid Khan" <[EMAIL PROTECTED]>
To: <java-user@lucene.apache.org>
Sent: Monday, November 27, 2006 10:17 AM
Subject: How to set query time scoring



    I have already set some score at the index time. And now i want to set
some score at the query time. But i am not getting any idea of how to set
the score at query time in lucene.
    Has anybody an idea how to do this?

Regards
Sajid
--
View this message in context: http://www.nabble.com/How-to-set-query-time-scoring-tf2709773.html#a7554766
Sent from the Lucene - Java Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to