Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for readingAnalyzer (0.23 sec)

  1. src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java

            if (StringUtil.isNotBlank(field) && fieldAnalyzerMapping.containsKey(field)
                    && fieldAnalyzerMapping.get(field).readingAnalyzer != null) {
                analyzerName = fieldAnalyzerMapping.get(field).readingAnalyzer;
            } else {
                analyzerName = READING_ANALYZER;
            }
            final String analyzerNameWithlang = isSupportedLanguage(lang) ? analyzerName + '_' + lang : analyzerName;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/main/resources/suggest_indices/analyzer/mapping-default.json

            "match_mapping_type": "string"
          }
        }
      ],
      "properties": {
        "settingsType": {
          "type": "keyword"
        },
        "fieldName": {
          "type": "keyword"
        },
        "readingAnalyzer": {
          "type": "keyword"
        },
        "readingTermAnalyzer": {
          "type": "keyword"
        },
        "normalizeAnalyzer": {
          "type": "keyword"
        },
        "contentsAnalyzer": {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Aug 03 15:54:27 UTC 2018
    - 613 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java

        public static final String ANALYZER_SETTINGS_TYPE = "settingsType";
        public static final String ANALYZER_SETTINGS_FIELD_NAME = "fieldName";
        public static final String ANALYZER_SETTINGS_READING_ANALYZER = "readingAnalyzer";
        public static final String ANALYZER_SETTINGS_READING_TERM_ANALYZER = "readingTermAnalyzer";
        public static final String ANALYZER_SETTINGS_NORMALIZE_ANALYZER = "normalizeAnalyzer";
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/main/resources/suggest_indices/suggest_analyzer.json

            "discard_punctuation" : "false"
          },
          "pattern_split" : {
            "type" : "simple_pattern_split",
            "pattern" : "__and__"
          }
        },
        "analyzer" : {
          "reading_analyzer" : {
            "type" : "custom",
            "tokenizer" : "kuromoji_neologd_normal",
            "filter" : ["reading_form"]
          },
          "reading_term_analyzer" : {
            "type" : "custom",
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Oct 03 02:51:59 UTC 2019
    - 57.3K bytes
    - Viewed (0)
  5. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

          },
          "fess_korean_normal": {
            "type": "nori_tokenizer",
            "decompound_mode": "mixed",
            "user_dictionary_rules": ["덕후", "버카충", "낄끼빠빠" ]
          }
        },
        "analyzer" : {
          "reading_analyzer" : {
            "type" : "custom",
            "tokenizer" : "fess_japanese_normal",
            "filter" : ["reading_form"]
          },
          "reading_term_analyzer" : {
            "type" : "custom",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  6. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

          },
          "fess_korean_normal": {
            "type": "seunjeon_tokenizer",
            "index_eojeol": false,
            "user_words": ["덕후", "버카충", "낄끼빠빠" ]
          }
        },
        "analyzer" : {
          "reading_analyzer" : {
            "type" : "custom",
            "tokenizer" : "fess_japanese_normal",
            "filter" : ["reading_form"]
          },
          "reading_term_analyzer" : {
            "type" : "custom",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Mar 24 12:55:37 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  7. src/main/resources/suggest_indices/suggest_analyzer.json

          "fess_korean_normal": {
            "type": "fess_korean_tokenizer",
            "decompound_mode": "mixed",
            "user_dict_path": "${fess.dictionary.path}ko/nori.txt"
          }
        },
        "analyzer" : {
          "reading_analyzer" : {
            "type" : "custom",
            "tokenizer" : "fess_japanese_normal",
            "filter" : ["reading_form"]
          },
          "reading_term_analyzer" : {
            "type" : "custom",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
Back to top