Re: NO_NORM and TOKENIZED

2008-03-05 Thread Michael McCandless
NO_NORMS means "do index the field as a single token (ie, do not tokenize the field), and, do not store norms for it". Mike On Mar 5, 2008, at 5:20 AM, <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> wrote: Hm, what exactly does NO_NORM mean? Thank you --

RE: NO_NORM and TOKENIZED

2008-03-05 Thread spring
Hm, what exactly does NO_NORM mean? Thank you - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: NO_NORM and TOKENIZED

2008-03-05 Thread Michael McCandless
he Field-constructor unintuitive. Maybe I have misunderstood it. Let's find out... It can be used either as: new Field("field", "data", Store.NO, TOKENIZED) or: new Field("field", "data", Store.NO, NO_NORM) As I understand it NO_NORM and TOKENIZED are not se

NO_NORM and TOKENIZED

2008-03-04 Thread Tobias Hill
Hi, I am quite new to the Lucene API. I find the Field-constructor unintuitive. Maybe I have misunderstood it. Let's find out... It can be used either as: new Field("field", "data", Store.NO, TOKENIZED) or: new Field("field", "data", Store.NO, NO_NOR