: Ok thanks, I just wanted the know is it possible to ignore boost value or
: not during score calculation and as you said its not.
: Now I would have to focus on nutch to fix the issue and not to send boost=0
: to Solr.

the index time bosts are encoded in field norms -- if you wnat to ignore 
them, you could either modify your schema to 'omitNOrms="true"' on all 
fields *beore* indexing, or you could customize hte SImilarity 
implementation you use to be osmething custom that does not tke into 
account field norms at all.

https://cwiki.apache.org/confluence/display/solr/Other+Schema+Elements#OtherSchemaElements-Similarity

https://lucene.apache.org/core/4_3_0/core/org/apache/lucene/search/similarities/TFIDFSimilarity.html


-Hoss

Reply via email to