> I would like to either disable > fieldNorm in the scoring or make sure that it is the same > for all documents. I am creating EdgeNGrams and that > can cause the number of terms for a document to be variable, > but I do not want it do affect the scoring for this > field. Is there an easy way to do this?
You can do it with omitNorms="true" in field declaration. Description taken from example schema.xml: "omitNorms: (expert) set to true to omit the norms associated with this field (this disables length normalization and index-time boosting for the field, and saves some memory). Only full-text fields or fields that need an index-time boost need norms."