Interface IFingerprintTokenFilter
The fingerprint token filter emits a single token which is useful for fingerprinting a body of text, and/or providing a token that can be clustered on. It does this by sorting the tokens, deduplicating and then concatenating them back into a single token.
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public interface IFingerprintTokenFilter : ITokenFilter
Properties
| Edit this page View SourceMaxOutputSize
The maximum token size to emit. Defaults to 255.
Declaration
[DataMember(Name = "max_output_size")]
int? MaxOutputSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
Separator
The character that separates the tokens after concatenation. Defaults to a space.
Declaration
[DataMember(Name = "separator")]
string Separator { get; set; }
Property Value
Type | Description |
---|---|
string |