CBLFTSIndexOptions

@interface CBLFTSIndexOptions : NSObject

Options for creating full-text search indexes. All properties are set to false or nil by default.

  • Set the true value to ignore accents/diacritical marks. The default value is false.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) BOOL ignoreAccents;
  • The locale code which is an ISO-639 language code plus, optionally, an underscore and an ISO-3166 country code: en, en_US, fr_CA, etc. Setting the locale code affects how word breaks and word stems are parsed. Setting nil value to use current locale and setting “” to disable stemming. The default value is nil.

    Declaration

    Objective-C

    @property (readwrite, copy, nonatomic, nullable) NSString *locale;
  • Undocumented

    Declaration

    Objective-C

    @interface CBLFTSIndexOptions : NSObject