Hello, I am new to solr, and trying to undestand how things work. If I want to use my tokenizer, there seems to be three choices: 1. Write a TokenizerFactory that create() my Tokenizer, and specify the factory in schema.xml. 2. Write an Analyzer that uses my Tokenizer, and specify that Analyzer in schema.xml. 3. Write an Analyzer that uses my Tokenizer and an AnalyzerFactory that create() that Analyzer, and specify that factory in schema.xml.
Is there document that describes differences of these approaches, guides when to use which? -Kuro