Class SynonymFilterFactory
- java.lang.Object
-
- org.apache.lucene.analysis.AbstractAnalysisFactory
-
- org.apache.lucene.analysis.TokenFilterFactory
-
- org.apache.lucene.analysis.synonym.SynonymFilterFactory
-
- All Implemented Interfaces:
ResourceLoaderAware
@Deprecated public class SynonymFilterFactory extends TokenFilterFactory implements ResourceLoaderAware
Deprecated.UseSynonymGraphFilterFactory
instead, but be sure to also useFlattenGraphFilterFactory
at index time (not at search time) as well.Factory forSynonymFilter
.<fieldType name="text_synonym" class="solr.TextField" positionIncrementGap="100"> <analyzer> <tokenizer class="solr.WhitespaceTokenizerFactory"/> <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" format="solr" ignoreCase="false" expand="true" tokenizerFactory="solr.WhitespaceTokenizerFactory" [optional tokenizer factory parameters]/> </analyzer> </fieldType>
An optional param name prefix of "tokenizerFactory." may be used for any init params that the SynonymFilterFactory needs to pass to the specified TokenizerFactory. If the TokenizerFactory expects an init parameters with the same name as an init param used by the SynonymFilterFactory, the prefix is mandatory.
The optional
format
parameter controls how the synonyms will be parsed: It supports the short names ofsolr
forSolrSynonymParser
andwordnet
for andWordnetSynonymParser
, or your ownSynonymMap.Parser
class name. The default issolr
. A customSynonymMap.Parser
is expected to have a constructor taking:boolean dedup
- true if duplicates should be ignored, false otherwiseboolean expand
- true if conflation groups should be expanded, false if they are one-directional
- an analyzer used for each raw synonymAnalyzer
analyzer
- Since:
- 3.1
- See Also:
SolrSynonymParser: default format
- SPI Name (case-insensitive: if the name is 'htmlStrip', 'htmlstrip' can be used when looking up the service).
- "synonym"
-
-
Field Summary
Fields Modifier and Type Field Description static String
NAME
Deprecated.SPI name-
Fields inherited from class org.apache.lucene.analysis.AbstractAnalysisFactory
LUCENE_MATCH_VERSION_PARAM, luceneMatchVersion
-
-
Constructor Summary
Constructors Constructor Description SynonymFilterFactory()
Deprecated.Default ctor for compatibility with SPISynonymFilterFactory(Map<String,String> args)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description TokenStream
create(TokenStream input)
Deprecated.void
inform(ResourceLoader loader)
Deprecated.protected SynonymMap
loadSynonyms(ResourceLoader loader, String cname, boolean dedup, Analyzer analyzer)
Deprecated.Load synonyms with the givenSynonymMap.Parser
class.-
Methods inherited from class org.apache.lucene.analysis.TokenFilterFactory
availableTokenFilters, findSPIName, forName, lookupClass, normalize, reloadTokenFilters
-
Methods inherited from class org.apache.lucene.analysis.AbstractAnalysisFactory
defaultCtorException, get, get, get, get, get, getBoolean, getChar, getClassArg, getFloat, getInt, getLines, getLuceneMatchVersion, getOriginalArgs, getPattern, getSet, getSnowballWordSet, getWordSet, isExplicitLuceneMatchVersion, require, require, require, requireBoolean, requireChar, requireFloat, requireInt, setExplicitLuceneMatchVersion, splitAt, splitFileNames
-
-
-
-
Field Detail
-
NAME
public static final String NAME
Deprecated.SPI name- See Also:
- Constant Field Values
-
-
Method Detail
-
create
public TokenStream create(TokenStream input)
Deprecated.- Specified by:
create
in classTokenFilterFactory
-
inform
public void inform(ResourceLoader loader) throws IOException
Deprecated.- Specified by:
inform
in interfaceResourceLoaderAware
- Throws:
IOException
-
loadSynonyms
protected SynonymMap loadSynonyms(ResourceLoader loader, String cname, boolean dedup, Analyzer analyzer) throws IOException, ParseException
Deprecated.Load synonyms with the givenSynonymMap.Parser
class.- Throws:
IOException
ParseException
-
-