On 8/13/07, David Whalen <[EMAIL PROTECTED]> wrote: > Hi All. > > We're running into a problem with stemming that I can't > figure out. For example, searching for the word "transit" > (whether in quotes or not) returns documents with the word > "transition" in them. > > How do I disable this? We want our engine to be as literal > as possible. If a user mis-types a word, that's too bad for > them....
Use a different field-type for those fields that you want exact matching for (and then re-index). Read through schema.xml if you haven't... there are quite a few comments in there. You may want a field type with just a whitespace tokenizer followed by a lowercase filter. -Yonik