Search Results for

    Show / Hide Table of Contents

    Interface IIntervalsWildcard

    Matches terms using a wildcard pattern. This pattern can expand to match at most 128 terms. If the pattern matches more than 128 terms, OpenSearch returns an error.

    Namespace: OpenSearch.Client
    Assembly: OpenSearch.Client.dll
    Syntax
    public interface IIntervalsWildcard : IIntervalsNoFilter

    Properties

    | Edit this page View Source

    Analyzer

    Analyzer used to normalize the prefix. Defaults to the top-level field's analyzer.

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

    Pattern

    Wildcard pattern used to find matching terms. Supports two wildcard operators:

    ?, which matches any single character

    *, which can match zero or more characters, including an empty one

    Warning: Avoid beginning patterns with * or ?. This can increase the iterations needed to find matching terms and slow search performance.
    Declaration
    [DataMember(Name = "pattern")]
    string Pattern { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    UseField

    If specified, then match intervals from this field rather than the top-level field. The prefix is normalized using the search analyzer from this field, unless a separate analyzer is specified.

    Declaration
    [DataMember(Name = "use_field")]
    Field UseField { get; set; }
    Property Value
    Type Description
    Field

    Extension Methods

    SuffixExtensions.Suffix(object, string)
    • Edit this page
    • View Source
    In this article
    • Properties
      • Analyzer
      • Pattern
      • UseField
    • Extension Methods
    Back to top Generated by DocFX