Hi, my field category (string) has omitNorms=True and omitTermFreqAndPositions=True. i have indexed all docs but when i do a search like: http://xxx:xxx/solr/select/?q=category:A&debugQuery=on i see there's normalization and idf and tf. Why? i can't understand the reason.
8.676225 = (MATCH) fieldWeight(category:A in 826), product of: 1.0 = tf(termFreq(category:A)=1) 8.676225 = idf(docFreq=6978, maxDocs=15049953) 1.0 = fieldNorm(field=category, doc=826) </str> <str name="9788805010158"> 8.676225 = (MATCH) fieldWeight(category:A in 3433), product of: 1.0 = tf(termFreq(category:A)=1) 8.676225 = idf(docFreq=6978, maxDocs=15049953) 1.0 = fieldNorm(field=category, doc=3433) </str> <str name="9788805010165"> 8.676225 = (MATCH) fieldWeight(category:A in 3434), product of: 1.0 = tf(termFreq(category:A)=1) 8.676225 = idf(docFreq=6978, maxDocs=15049953) 1.0 = fieldNorm(field=category, doc=3434) category field is stored and indexed. is that the problem? Thank you Gastone