Hi Otis,

do you think I should customize both tf and idf to disable the term
frequency?

i.e. something like:

        public float tf(float freq) {
                return freq > 0 ? 1.0f : 0.0f;
        }

  public float idf(int docFreq, int numDocs) {
    return docFreq > 0 ? 1.0f : 0.0f;
  }

thanks!
Jie



--
View this message in context: 
http://lucene.472066.n3.nabble.com/if-I-only-need-exact-search-does-frequency-score-matter-tp4026893p4027578.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to