سؤال

I'm using Apache Lucene 4.6.0. and I'm trying to implement a SpellChecker. However, I cannot find the SpellChecker class and the entire org.apache.lucene.search.spell package in version 4.6.0 of Lucene.

Can someone please guide me to this package, or the replacement package in version 4.6.0?

هل كانت مفيدة؟

المحلول

Try this org.apache.lucene.search.spell.SpellChecker:

http://lucene.apache.org/core/4_6_0/suggest/org/apache/lucene/search/spell/SpellChecker.html

<dependency>
    <groupId>org.apache.lucene</groupId>
    <artifactId>lucene-suggest</artifactId>
    <version>4.6.0</version>
</dependency>
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top