Hi, I want to modify scoring to ignore term frequency > 1. This is useful for short fields like titles or subjects, where the number of times a term appears does not correspond to relevancy. I found several discussions of this problem, and also an implementation that changes the Similarity class to achieve this (http://osdir.com/ml/solr-user.lucene.apache.org/2009-09/msg00672.html). However, this change is global, but I only need the behavior for some fields. What's the best way to do this? Is there a way to use a field-specific similarity class, or to evaluate field names/parameters inside a Similarity class?
Thanks! Andreas