Writing custom Solr Analysis Token Filters
Posted by Kelvin on 02 Nov 2019 | Tagged as: programming
Introduction to Solr analysis Solr filters are declared in Solr's schema as part of analyzer chains. In Lucene/Solr/Elasticsearch, analyzers are used to process text, breaking text up into terms or tokens, which are then indexed. An analyzer chain in Solr/Elasticsearch comprises of 1) a tokenizer 2) an optional character filter 3) one or more token […]