computeNorm

Computes the normalization value for a field at index-time.

The default implementation uses SmallFloat.intToByte4 to encode the number of terms as a single byte.

WARNING: The default implementation is used by Lucene's supplied Similarity classes, which means you can change the Similarity at runtime without reindexing. If you override this method, you'll need to re-index documents for it to take effect.

Matches in longer fields are less precise, so implementations of this method usually set smaller values when state.getLength() is large, and larger values when state.getLength() is small.

Note that for a given term-document frequency, greater unsigned norms must produce scores that are lower or equal, ie. for two encoded norms n1 and n2 so that Long.compareUnsigned(n1, n2) > 0 then SimScorer.score(freq, n1) <= SimScorer.score(freq, n2) for any legal freq.

0 is not a legal norm, so 1 is the norm that produces the highest scores.

Return

computed norm value

Parameters

state

accumulated state of term processing for this field