Question

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?

Était-ce utile?

La solution

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>
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top