Hello all, I've come accros a problem where newly indexed pages almost always come first even when the term frequency is relatively slow.
I read the posts below on "fieldNorm" and "omitNorms" but setting "omitNorms=true" doesn't change anything for me on the calculation of fieldNorm. e.g.: 0.12333163 = (MATCH) weight(content:"mobil broadband" in 1004), product of: 1.0 = queryWeight(content:"mobil broadband"), product of: 6.3145795 = idf(content: mobil=4922 broadband=2290) 0.15836367 = queryNorm 0.12333163 = fieldWeight(content:"mobil broadband" in 1004), product of: 1.0 = tf(phraseFreq=1.0) 6.3145795 = idf(content: mobil=4922 broadband=2290) 0.01953125 = fieldNorm(field=content, doc=1004) These values are the same regardless of omitNorms's value. Any idea what might be the problem? [1] http://lucene.472066.n3.nabble.com/QueryNorm-and-FieldNorm-td1992964.html [2] http://lucene.472066.n3.nabble.com/Question-about-fieldNorms-td504500.html