Re: Field.Store.YES and Field.Store.Tokenized with CustomAnalyzer - Double Hit

2006-08-29 Thread Chris Hostetter
: However, I noticed that when I say "Field.Store.YES" it stores the : original, pre-tokenized version, so it seems like I'm doubling up here. : Is there a better way to do this? if you are doubling up to get the benefit of two seperate Analyzers, then there is no need to "Store.YES" in both fiel

Re: Field.Store.YES and Field.Store.Tokenized with CustomAnalyzer - Double Hit

2006-08-29 Thread Erick Erickson
The only reason you need to store a token is if you need to retrieve it from the document, storing is completely unnecessary for answering the question "is this term in the document?". So I guess I'm wondering why you don't just use Field.Store.NO on *both* of the fields... On 8/29/06, Furash