Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for reloadable_kuromoji_tokenizer (0.14 seconds)

  1. src/test/java/org/codelibs/opensearch/extension/ExtensionPlugin.java

        }
    
        @Override
        public Map<String, AnalysisProvider<TokenizerFactory>> getTokenizers() {
            final Map<String, AnalysisProvider<TokenizerFactory>> extra = new HashMap<>();
            extra.put("reloadable_kuromoji_tokenizer", KuromojiTokenizerFactory::new);
            extra.put("reloadable_kuromoji", KuromojiTokenizerFactory::new);
            extra.put("ngram_synonym", NGramSynonymTokenizerFactory::new);
            return extra;
        }
    
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Tue Jul 08 14:37:06 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  2. src/main/resources/suggest_indices/suggest_analyzer.json

        "number_of_shards": 1,
        "number_of_replicas": 0,
        "auto_expand_replicas": "0-1"
      },
      "analysis" : {
        "tokenizer" : {
          "kuromoji_neologd_normal" : {
            "type" : "reloadable_kuromoji_tokenizer",
            "mode" : "normal",
            "discard_punctuation" : "false"
          },
          "pattern_split" : {
            "type" : "simple_pattern_split",
            "pattern" : "__and__"
          }
        },
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Thu Oct 03 02:51:59 GMT 2019
    - 57.3K bytes
    - Click Count (3)
Back to Top