I have a requirement wherein the documents that are retrieved based on the
similarity computation
are bucketed and resorted based on user score. 
An example -

Let us say a search returns the following data set -

Doc ID   Lucene score User score
1000        1000              125
1000          900              225
1000          800              25
1000          700              525
1000            50              25
1000            40              125

Assuming two bucket are created, the expected result is - 
Doc ID   Lucene score User score
1000          900              225
1000        1000              125
1000          800              25
-----------------------------------------------
1000          700              525
1000            40              125
1000            50              25

I am assuming that the only way to do this is to change some of the Solr
internals.  Any pointers would
be most helpful on the best way to go about it. I will also post this on the
Dev list.

Thanks.

-- 
View this message in context: 
http://www.nabble.com/Bucketing-result-set-%28User-list-posting%29...-tf3031129.html#a8421968
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to