All Products
Search
Document Center

Tablestore:SplitAnalyzerParameter

Last Updated:Feb 06, 2025

SplitAnalyzerParameter specifies the optional configurations in the search index when delimiter tokenization is used.

Data structure

message SplitAnalyzerParameter {
    optional string delimiter = 1;
    optional bool case_sensitive = 2;
}

Parameter

Type

Required

Description

delimiter

string

No

The delimiter. The default delimiter is a whitespace character. You can specify a custom delimiter.

If the custom delimiter is a special character such as a number sign (#) or a tilde (~), concatenate the delimiter with an escape character (\), such as \#.

case_sensitive

bool

No

Specifies whether to enable case sensitivity. Default value: false. A value of false specifies that all letters are converted into lowercase letters.

If you do not want Tablestore to convert letters into lowercase letters, set this parameter to true.