Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for reading_term_analyzer (0.12 sec)

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

            if (StringUtil.isNotBlank(field) && fieldAnalyzerMapping.containsKey(field)
                    && fieldAnalyzerMapping.get(field).readingTermAnalyzer != null) {
                analyzerName = fieldAnalyzerMapping.get(field).readingTermAnalyzer;
            } else {
                analyzerName = READING_TERM_ANALYZER;
            }
            final String analyzerNameWithlang = isSupportedLanguage(lang) ? analyzerName + '_' + lang : analyzerName;
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Sat Oct 12 00:10:39 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/main/resources/suggest_indices/suggest_analyzer.json

          }
        },
        "analyzer" : {
          "reading_analyzer" : {
            "type" : "custom",
            "tokenizer" : "kuromoji_neologd_normal",
            "filter" : ["reading_form"]
          },
          "reading_term_analyzer" : {
            "type" : "custom",
            "tokenizer" : "kuromoji_neologd_normal"
          },
          "normalize_analyzer" : {
            "type" : "custom",
            "tokenizer" : "keyword",
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Oct 03 02:51:59 UTC 2019
    - 57.3K bytes
    - Viewed (0)
  3. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

          }
        },
        "analyzer" : {
          "reading_analyzer" : {
            "type" : "custom",
            "tokenizer" : "fess_japanese_normal",
            "filter" : ["reading_form"]
          },
          "reading_term_analyzer" : {
            "type" : "custom",
            "tokenizer" : "fess_japanese_normal"
          },
          "normalize_analyzer" : {
            "type" : "custom",
            "tokenizer" : "keyword",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Mar 24 12:55:37 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  4. src/main/resources/suggest_indices/suggest_analyzer.json

          }
        },
        "analyzer" : {
          "reading_analyzer" : {
            "type" : "custom",
            "tokenizer" : "fess_japanese_normal",
            "filter" : ["reading_form"]
          },
          "reading_term_analyzer" : {
            "type" : "custom",
            "tokenizer" : "fess_japanese_normal"
          },
          "normalize_analyzer" : {
            "type" : "custom",
            "tokenizer" : "keyword",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
  5. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

          }
        },
        "analyzer" : {
          "reading_analyzer" : {
            "type" : "custom",
            "tokenizer" : "fess_japanese_normal",
            "filter" : ["reading_form"]
          },
          "reading_term_analyzer" : {
            "type" : "custom",
            "tokenizer" : "fess_japanese_normal"
          },
          "normalize_analyzer" : {
            "type" : "custom",
            "tokenizer" : "keyword",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 57.4K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java

        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";
        public static final String ANALYZER_SETTINGS_CONTENTS_ANALYZER = "contentsAnalyzer";
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. src/main/resources/suggest_indices/analyzer/mapping-default.json

      ],
      "properties": {
        "settingsType": {
          "type": "keyword"
        },
        "fieldName": {
          "type": "keyword"
        },
        "readingAnalyzer": {
          "type": "keyword"
        },
        "readingTermAnalyzer": {
          "type": "keyword"
        },
        "normalizeAnalyzer": {
          "type": "keyword"
        },
        "contentsAnalyzer": {
          "type": "keyword"
        },
        "contentsReadingAnalyzer": {
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Fri Aug 03 15:54:27 UTC 2018
    - 613 bytes
    - Viewed (0)
Back to top