creates an analyzer
(analyzer {:type :standard}) => org.apache.lucene.analysis.standard.StandardAnalyzer
creates an analyzer
(analyzer {:type :standard})
=> org.apache.lucene.analysis.standard.StandardAnalyzer(analyzer-char-set stop-words)(analyzer-char-set stop-words ignore-case)creates an analyzer char set
(analyzer-char-set []) => #{}
creates an analyzer char set
(analyzer-char-set [])
=> #{}(analyzer-field {:keys [default fields]})creates a field analyzer
(analyzer-field {:type :field :default {:type :standard :stop-words []} :fields {:time {:type :keyword}}}) => org.apache.lucene.analysis.miscellaneous.PerFieldAnalyzerWrapper
creates a field analyzer
(analyzer-field {:type :field
:default {:type :standard
:stop-words []}
:fields {:time {:type :keyword}}})
=> org.apache.lucene.analysis.miscellaneous.PerFieldAnalyzerWrapper(analyzer-keyword _)creates a keyword analyzer
(analyzer-keyword {}) => org.apache.lucene.analysis.core.KeywordAnalyzer
creates a keyword analyzer
(analyzer-keyword {})
=> org.apache.lucene.analysis.core.KeywordAnalyzer(analyzer-standard {:keys [stop-words ignore-case]})creates a standard analyzer
(analyzer-standard {:stop-words ["and"] :ignore-case false}) => org.apache.lucene.analysis.standard.StandardAnalyzer
creates a standard analyzer
(analyzer-standard {:stop-words ["and"]
:ignore-case false})
=> org.apache.lucene.analysis.standard.StandardAnalyzercljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |