Dear Wiki user,
You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The "AnalyzersTokenizersTokenFilters" page has been changed by ScottGonyea.
The comment on this change is: Added KeywordTokenizerFactory, as it was absent from this Wiki
page--thereby making my life more difficult..
http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters?action=diff&rev1=89&rev2=90
--------------------------------------------------
=== TokenizerFactories ===
Solr provides the following !TokenizerFactories (Tokenizers and !TokenFilters):
+
+ ==== solr.KeywordTokenizerFactory ====
+ Creates `org.apache.lucene.analysis.core.KeywordTokenizer`.
+
+ Treats the entire field as a single token, regardless of its content.
+
+ . Example: `"http://example.com/I-am+example?Text=-Hello" ==> "http://example.com/I-am+example?Text=-Hello"`
==== solr.LetterTokenizerFactory ====
Creates `org.apache.lucene.analysis.LetterTokenizer`.
|