Example usage for org.apache.lucene.search.spell Dictionary interface-usage

List of usage examples for org.apache.lucene.search.spell Dictionary interface-usage

Introduction

In this page you can find the example usage for org.apache.lucene.search.spell Dictionary interface-usage.

Usage

From source file SolrDocumentDictionary.java

/**
 * <p>
 * Dictionary with terms, weights, payload (optional) and contexts (optional)
 * information taken from stored/indexed fields in a Lucene index.
 * </p>
 * <b>NOTE:</b> 

From source file com.semantic.util.suggest.MultiFieldContentLuceneDirectory.java

/**
 *
 * @author Christian Plonka (cplonka81@gmail.com)
 */
public class MultiFieldContentLuceneDirectory implements Dictionary {

From source file com.semantic.util.suggest.MultiFieldTermLuceneDirectory.java

/**
 *
 * @author Christian Plonka (cplonka81@gmail.com)
 */
public class MultiFieldTermLuceneDirectory implements Dictionary {

From source file org.apache.solr.spelling.suggest.FileDictionary.java

/**
 * Dictionary represented by a text file.
 * 
 * <p/>Format allowed: 1 string per line, optionally with a tab-separated integer value:<br/>
 * word1 TAB 100<br/>
 * word2 word3 TAB 101<br/>

From source file org.apache.solr.spelling.suggest.SmartDocumentDictionary.java

/**
 * <p>
 * Dictionary with terms, weights, payload (optional) and contexts (optional)
 * information taken from stored/indexed fields in a Lucene index.
 * </p>
 * <b>NOTE:</b> 

From source file org.apache.solr.util.HighFrequencyDictionary.java

/**
 * HighFrequencyDictionary: terms taken from the given field
 * of a Lucene index, which appear in a number of documents
 * above a given threshold.
 *
 * Threshold is a value in [0..1] representing the minimum

From source file org.dice.solrenhancements.spellchecker.MultipleFileDictionary.java

/**
 * Dictionary represented by a text file.
 *
 * <p/>Format allowed: 1 string per line, optionally with a tab-separated integer value:<br/>
 * word1 TAB 100<br/>
 * word2 word3 TAB 101<br/>