Example usage for org.apache.lucene.search.suggest.jaspell JaspellLookup JaspellLookup

List of usage examples for org.apache.lucene.search.suggest.jaspell JaspellLookup JaspellLookup

Introduction

In this page you can find the example usage for org.apache.lucene.search.suggest.jaspell JaspellLookup JaspellLookup.

Prototype

public JaspellLookup() 

Source Link

Document

Creates a new empty trie

Usage

From source file:org.apache.solr.spelling.suggest.jaspell.JaspellLookupFactory.java

License:Apache License

@Override
public Lookup create(NamedList params, SolrCore core) {
    LOG.info("init: " + params);
    return new JaspellLookup();
}