Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for readingTermAnalyzer (0.1 seconds)

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

                }
    
                final String readingTermAnalyzer = getReadingTermAnalyzerName("", lang);
                try {
                    client.admin()
                            .indices()
                            .prepareAnalyze(analyzerSettingsIndexName, text)
                            .setAnalyzer(readingTermAnalyzer)
                            .execute()
    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)
  2. 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)
  3. 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