On 8/13/07, David Whalen <[EMAIL PROTECTED]> wrote: > So I shut it off by removing these tags from my schema.xml > file? Seems like it's this Porter thing that's messing > me up.
Yes. As I said in my first email, if you want very exact matching, you may just want a whitespace tokenizer followed by a lowercase filter in the analyzer for that fieldType. I don't know if you have synonyms configured or if you want them, if you have/want WordDelimiterFilter, etc. If you have both a query analyzer and an index analyzer for that fieldType, then remove stemming from both of them. You also must re-index for a change like this (this is not just a query-time config since stemming also affects what's in the index). -Yonik