Search Results for

    Show / Hide Table of Contents

    Interface IHunspellTokenFilter

    Basic support for hunspell stemming.

    Hunspell dictionaries will be picked up from a dedicated hunspell directory on the filesystem.

    Inherited Members
    ITokenFilter.Type
    ITokenFilter.Version
    Namespace: OpenSearch.Client
    Assembly: OpenSearch.Client.dll
    Syntax
    public interface IHunspellTokenFilter : ITokenFilter

    Properties

    | Edit this page View Source

    Dedup

    If only unique terms should be returned, this needs to be set to true.

    Declaration
    [DataMember(Name = "dedup")]
    bool? Dedup { get; set; }
    Property Value
    Type Description
    bool?
    | Edit this page View Source

    Dictionary

    The name of a dictionary.The path to your hunspell dictionaries should be configured via indices.analysis.hunspell.dictionary.location before.

    Declaration
    [DataMember(Name = "dictionary")]
    string Dictionary { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Locale

    A locale for this filter. If this is unset, the lang or language are used instead - so one of these has to be set.

    Declaration
    [DataMember(Name = "locale")]
    string Locale { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    LongestOnly

    If only the longest term should be returned, set this to true.

    Declaration
    [DataMember(Name = "longest_only")]
    bool? LongestOnly { get; set; }
    Property Value
    Type Description
    bool?

    Extension Methods

    SuffixExtensions.Suffix(object, string)
    • Edit this page
    • View Source
    In this article
    • Properties
      • Dedup
      • Dictionary
      • Locale
      • LongestOnly
    • Extension Methods
    Back to top Generated by DocFX