Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for reading_term_analyzer (0.13 seconds)

  1. 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",
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Thu Oct 03 02:51:59 GMT 2019
    - 57.3K bytes
    - Click Count (3)
  2. 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",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 57.4K bytes
    - Click Count (1)
  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",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 24 12:55:37 GMT 2021
    - 57.4K bytes
    - Click Count (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",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu May 23 05:09:51 GMT 2019
    - 57.7K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java

    public class AnalyzerSettings {
        /** Analyzer name for reading. */
        public static final String READING_ANALYZER = "reading_analyzer";
        /** Analyzer name for reading term. */
        public static final String READING_TERM_ANALYZER = "reading_term_analyzer";
        /** Analyzer name for normalization. */
        public static final String NORMALIZE_ANALYZER = "normalize_analyzer";
        /** Analyzer name for contents. */
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 24.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java

    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Mon Sep 01 13:33:03 GMT 2025
    - 12.5K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/suggest/settings/AnalyzerSettingsTest.java

            // When field is empty or blank, should return default analyzer
            assertEquals(AnalyzerSettings.READING_ANALYZER, settings.analyzer().getReadingAnalyzerName("", ""));
            assertEquals(AnalyzerSettings.READING_TERM_ANALYZER, settings.analyzer().getReadingTermAnalyzerName("", ""));
            assertEquals(AnalyzerSettings.NORMALIZE_ANALYZER, settings.analyzer().getNormalizeAnalyzerName("", ""));
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 8K bytes
    - Click Count (0)
  8. 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": {
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Fri Aug 03 15:54:27 GMT 2018
    - 613 bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java

        public static final String ANALYZER_SETTINGS_READING_ANALYZER = "readingAnalyzer";
        /** The reading term analyzer settings field. */
        public static final String ANALYZER_SETTINGS_READING_TERM_ANALYZER = "readingTermAnalyzer";
        /** The normalize analyzer settings field. */
        public static final String ANALYZER_SETTINGS_NORMALIZE_ANALYZER = "normalizeAnalyzer";
        /** The contents analyzer settings field. */
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Fri Jul 04 14:00:23 GMT 2025
    - 4.7K bytes
    - Click Count (0)
Back to Top