: think i'm just doing something wrong... : : was experimenting with the spellcheck handler with the nightly : checkout from 11-28; seems my spellchecking is case-sensitive, even : tho i think i'm adding the LowerCaseFilterFactory to both the index : and query analyzers.
I'm not very familiar with the SpellCheckerRequestHandler, but i don't think you are doing anything wrong. a quick skim of the code indicates that the "q" param isn't being analyzed by that handler, so the raw input string is pased to the SpellChecker.suggestSimilar method. This may or may not have been intentional. I personally can't think of any reason why it wouldn't make sense to get the query analyzer for the termSourceField and use it to analyze the q param before getting suggestions. -Hoss