I use Nutch to index my documents. I have a Nutch aware schema at my Solr
and there is a field like that:
<field name="boost" type="float" stored="true" indexed="false"/>
boost holds the epic score of my documents (similar to Google's pagerank).
How can I boost my queries at Solr side?I followed wiki and tried that:
q={!boost b=boost}text:supervillians
and it says:
can not use FieldCache on a field which is neither indexed nor has doc
values: boost
However there should be a convenient solution for my purpose. Instead of
adding something to search query maybe I boost document with a different
way while indexing, what do you suggest for me?