What I want to do is : everytime an item is searched, I get the ID of that
document, and now I want to increase this document's score.Function queries at
query time won't really help with this. Any way to do this other than adding
the entire document again?
> From: kvs_cheezy_...@hotmail.com
> To: solr-user@lucene.apache.org
> Subject: Boosting score of a document without deleting and adding another
> document
> Date: Tue, 10 May 2011 16:17:25 +0530
>
>
>
> I want to add score for documents dynamically. For
> this, the method that I know right now is to use "add". Using this
> method, everytime I need to get the contents of that document, and then
> add another record with the boost field. Is there a way in which I can
> just specify the boost attribute value, and not have to delete and add
> the whole document?
>
>
> Thanks