I look at the code and i dont the object beeing used anywhere in the class. The problem is that i am writting an application with lucene that searches using a foreign language with latin characters, the indexing works fine, but the search aparently doesn't call the Analyzer.
Here is an example:
i have a file that contains the following word: memória
if i search for: memoria (without the puntuation charecter in the o) it finds the word, which is correct
if i search for: memória (the exact same word) it doesn't find the word, because the QueryParser splits the word to "mem ria", but if the analyzer were called the "ó" would be replaced to "o". I guess the analyzer isn't called, is this right?
Thanks in advance, Ricardo Lopes
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]