All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opensearch.analysis.common.test1.yml Maven / Gradle / Ivy

There is a newer version: 2.17.0
Show newest version
index :
  analysis :
    tokenizer :
      standard :
        type : standard
    filter :
      stop :
        type : stop
        stopwords : [test-stop]
      stop2 :
        type : stop
        stopwords : [stop2-1, stop2-2]
      my :
        type : myfilter
      dict_dec :
        type : dictionary_decompounder
        word_list : [donau, dampf, schiff, spargel, creme, suppe]
      hyphen_dec :
        type : hyphenation_decompounder
        word_list : [læse, hest]
        hyphenation_patterns_path: "da_UTF8.xml"
      hyphen_dec_no_sub_matches :
        type : hyphenation_decompounder
        word_list : [basketball, basket, ball, kurv]
        hyphenation_patterns_path: "da_UTF8.xml"
        only_longest_match: False
        no_sub_matches: True
        no_overlapping_matches: False

    analyzer :
      standard :
        type : standard
        stopwords : [test1, test2, test3]
      custom1 :
        tokenizer : standard
        filter : [stop, stop2]
      custom4 :
        tokenizer : standard
        filter : [my]
      custom6 :
        tokenizer : standard
        position_increment_gap: 256
      custom7 :
        type : standard
        version: 3.6
      czechAnalyzerWithStemmer :
        tokenizer : standard
        filter : [lowercase, stop, czech_stem]
      decompoundingAnalyzer :
        tokenizer : standard
        filter : [dict_dec]
      hyphenationAnalyzer :
        tokenizer : standard
        filter : [hyphen_dec]
      hyphenationAnalyzerNoSubMatches :
        tokenizer : standard
        filter : [hyphen_dec_no_sub_matches]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy