hi!

I am trying to do something a little unique...

I have a 90k text documents that I am trying to search
Search A: indexes and searches the documents using regular relevancy search
Search B: indexes and searches the documents using a smaller subset of "key"
words that I have chosen

This gives me 2 seperate scores: Score A, and Score B...

I am trying to show the top 10 results of the scores combined so....

FinalScoretextDoc = (scoreA_of_td1 * 0.5) * (scoreB_of_td1 * 0.5)

While it seems straightforward, I do not want to calculate the scores of all
the documents outside of lucene.  How can I integrate this better into the
lucene search engine?  Is this possible to do by any simple means?

Thanks guys + gals!

-- 
View this message in context: 
http://www.nabble.com/A-Challenge%21%3A-Combining-2-searches-into-a-single-resultset--tp23085506p23085506.html
Sent from the Lucene - Java Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org

Reply via email to