mirror of https://github.com/apache/lucene.git
SOLR-6178, LUCENE-5775: Deprecate JaspellLookupFactory
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1604122 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2420a3564e
commit
0e9d6de916
|
@ -278,6 +278,9 @@ Other Changes
|
|||
* SOLR-6128: Removed deprecated analysis factories and fieldTypes from the example
|
||||
schema.xml (hossman)
|
||||
|
||||
* SOLR-6178, LUCENE-5775: Deprecate JaspellLookupFactory. (Uwe Schindler,
|
||||
Mike McCandless)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -27,7 +27,9 @@ import org.slf4j.LoggerFactory;
|
|||
|
||||
/**
|
||||
* Factory for {@link JaspellLookup}
|
||||
* @deprecated Migrate to one of the newer suggesters which are much more RAM efficient.
|
||||
*/
|
||||
@Deprecated
|
||||
public class JaspellLookupFactory extends LookupFactory {
|
||||
private static final Logger LOG = LoggerFactory.getLogger(JaspellLookup.class);
|
||||
private static final String FILENAME = "jaspell.dat";
|
||||
|
|
Loading…
Reference in New Issue