solr 3: multivalued field omitTermFreqAndPositions is ignored

319 views Asked by At

We have 20mil document solr index which contains multiValued fields of numbers. We have omitNorms="true" omitTermFreqAndPositions="true" , but looks like solr still calculating idf and tf for the field. Is there any other way except creating custom similarity to fix this issue? I just want be match no match

<field name="nume" type="plong"     indexed="true"  stored="false" multiValued="true" omitNorms="true" omitTermFreqAndPositions="true"  /> 
0

There are 0 answers