One more tip...if you would like to be able to search phrases without putting in the quotes you must strip them with the analyzer. In standardfilter (in the standard analyzer code) add this:

private static final String QUOTED_TYPE = tokenImage[QUOTED];
- youll see where to put that

and youll see where to put this:

else if (type == QUOTED_TYPE)  {
return new org.apache.lucene.analysis.Token(text.STRIPMYQUOTESOFFBABY(),t.startOffset(), t.endOffset(), type);
}

text is a string so don't take my pseudo code literally.

- Mark

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to