Type: Improvement
Components: Search
Versions: 1.9
Environment: All
Reporter: Michael Harhen
I encountered a problem with the Highlighter, where it was not recognizing
MultiPhraseQuery.
To fix this, I developed the following two patches
This fix has been included in the repository.
Thanks
Michael Harhen wrote:
While debugging a Lucene application using the Sandbox SpellChecker, I
have identified a problem with SpellChecker's suggestSimilar(...) method.
Lines 175-177 are currently:
if (sugword.string=
].text()));
}
}
}
=
Can the team update the repository?
Thanks
Michael Harhen
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
ill simply slow the spell checker's performance without
fixing any bugs. (Of course, I could be totally wrong too)
On 1/29/06, Michael Harhen <[EMAIL PROTECTED]> wrote:
While debugging a Lucene application using the Sandbox SpellChecker, I
have identified a problem with SpellChecker'
While debugging a Lucene application using the Sandbox SpellChecker, I
have identified a problem with SpellChecker's suggestSimilar(...) method.
Lines 175-177 are currently:
if (sugword.string==word) {
continue; // don't suggest a word for itself, that would
be silly