[jira] Created: (LUCENE-495) Suggested Patches to MultiPhraseQuery and QueryTermExtractor (for use with HighLighter)

2006-02-09 Thread Michael Harhen (JIRA)
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

Re: Bug in Lucene Sandbox SpellChecker class (fix included)

2006-02-05 Thread Michael Harhen
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=

Suggested Patches to MultiPhraseQuery and QueryTermExtractor (for use with HighLighter)

2006-02-05 Thread Michael Harhen
].text())); } } } = Can the team update the repository? Thanks Michael Harhen - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Bug in Lucene Sandbox SpellChecker class (fix included)

2006-01-28 Thread Michael Harhen
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'

Bug in Lucene Sandbox SpellChecker class (fix included)

2006-01-28 Thread Michael Harhen
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