I'm using ES for searching a huge list of human names employing fuzzy search techniques.
TF is applicable for scoring, but IDF is really not required for me in this case. This is really diluting the score. I still want TF and Field Norm to be applied to the score.
How do I disable/suppress IDF for my queries, but keep TF and Field Norm?
I came across the Disable IDF calculation thread, but it did not help me. It also seems like the constant score query would not help me in this case.