Re: Index of Lucene

2012-07-10 Thread nanshi
Much more clear explanation than the wiki! Thanks! -- View this message in context: http://lucene.472066.n3.nabble.com/Index-of-Lucene-tp555857p3994239.html Sent from the Lucene - Java Users mailing list archive at Nabble.com. -

Re: Index of Lucene

2008-08-23 Thread Michael McCandless
y, August 18, 2008 12:11:28 AM Subject: Re: Index of Lucene Norms information comes mainly from lengths of documents - allowing the search time scoring to take into account the effect of document lengths (actually field length within a document). In practice, norms stored within the ind

Re: Index of Lucene

2008-08-18 Thread Otis Gospodnetic
August 18, 2008 12:11:28 AM > Subject: Re: Index of Lucene > > Norms information comes mainly from lengths of documents - allowing the > search time scoring to take into account the effect of document lengths > (actually > field length within a document). In practice, norms stor

Re: Index of Lucene

2008-08-18 Thread Doron Cohen
On Mon, Aug 18, 2008 at 7:28 AM, blazingwolf7 <[EMAIL PROTECTED]>wrote: > > Thanks for the info. But do you know where this is actually perform in > Lucene? I mean the method involved, that will calculate the value before > storing it into the index. I track it to one method known as lengthNorm()

Re: Index of Lucene

2008-08-17 Thread blazingwolf7
Thanks for the info. But do you know where this is actually perform in Lucene? I mean the method involved, that will calculate the value before storing it into the index. I track it to one method known as lengthNorm() in DefaultSimilarity.java, but the value is different from what is stored in the

Re: Index of Lucene

2008-08-17 Thread Doron Cohen
Norms information comes mainly from lengths of documents - allowing the search time scoring to take into account the effect of document lengths (actually field length within a document). In practice, norms stored within the index may include other information, such as index time boosts - for a docu