Class SynonymFilterFactory
Factory for Synonym
<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 Synonym
The optional format
parameter controls how the synonyms will be parsed:
It supports the short names of solr
for Solrwordnet
for and Wordnetsolr
.
A custom Synonym
System.
- true if duplicates should be ignored, false otherwiseBoolean dedupSystem.
- true if conflation groups should be expanded, false if they are one-directionalBoolean expandLucene.
- an analyzer used for each raw synonymNet. analyzerAnalysis. Analyzer
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Lucene.Net.Analysis.Synonym
Assembly: Lucene.Net.Analysis.Common.dll
Syntax
public class SynonymFilterFactory : TokenFilterFactory, IResourceLoaderAware
Constructors
| Improve this Doc View SourceSynonymFilterFactory(IDictionary<String, String>)
Declaration
public SynonymFilterFactory(IDictionary<string, string> args)
Parameters
Type | Name | Description |
---|---|---|
System. |
args |
Methods
| Improve this Doc View SourceCreate(TokenStream)
Declaration
public override TokenStream Create(TokenStream input)
Parameters
Type | Name | Description |
---|---|---|
Lucene. |
input |
Returns
Type | Description |
---|---|
Lucene. |
Overrides
| Improve this Doc View SourceInform(IResourceLoader)
Declaration
public virtual void Inform(IResourceLoader loader)
Parameters
Type | Name | Description |
---|---|---|
IResource |
loader |