Hi, On Fri, 2007-03-16 at 16:23 -0400, Martin, Chris wrote: > I have a field that I currently store as a comma separated list of > Guid objects. This field is crucial to our search strategy. > > I can't figure out how to get those guid objects to be tokenized. I'm > playing with the idea of a custom Analyzer and TokenFilter to try and > do this but, I'm not sure that's the way to go here.
To tokenize a field, pass in Field.Index.TOKENIZED to the constructor. You'll also need to pass an analyzer to the IndexWriter constructor. Or do you mean something more specific? Joe
