Boosts on NutchDocuments

2010-11-04 Thread Markus Jelsma
Hi, Quick question: does Nutch set document boosts on documents that i send to Solr? I've got some trouble with fieldNorms which are calculated from document/field boosts and need to make sure Nutch doesn't boost any documents. Using luke it's clear that no fields receive an index-time boost

Re: Boosts on NutchDocuments

2010-11-04 Thread Markus Jelsma
Well, it clearly can set a document boost depending on the weight value of a NutchDocument. How can i find the value? I've looked into the segment reader for a specific document but haven't seen a boost. When is it calculated/set? There's either an issue with Solr's fieldNorm handling, or Nutch

Re: Boosts on NutchDocuments

2010-11-04 Thread Alexander Aristov
Before sending a document to solr nutch calculates document score by running scoring filters. After calculating total score it gets assigned to the NutchDocuement and which then gets sent to Solr. So if you want influence boosting then you need to play with scoring filters. Best Regards