Re: How disabling norms on a field effects other fields

2012-03-06 Thread Hany Azzam
om: Paul Taylor Date: Tue, 06 Mar 2012 21:48:17 To: Reply-To: java-user@lucene.apache.org Subject: Re: How disabling norms on a field effects other fields On 06/03/2012 21:44, Paul Taylor wrote: > I have a number of fields that either only ever have a term frequency > of 1 or I

Re: How disabling norms on a field effects other fields

2012-03-06 Thread Paul Taylor
On 06/03/2012 21:44, Paul Taylor wrote: I have a number of fields that either only ever have a term frequency of 1 or I don't want them to be disavantaged if they do have a greater term frequency, and I never boost the field so I disable norms for these fields with Field.Index.ANALYZED_NO_NORM

How disabling norms on a field effects other fields

2012-03-06 Thread Paul Taylor
I have a number of fields that either only ever have a term frequency of 1 or I don't want them to be disavantaged if they do have a greater term frequency, and I never boost the field so I disable norms for these fields with Field.Index.ANALYZED_NO_NORM or Field.Index.NOT_ANALYZED_NO_NORM. B