이름 |
설명 |
BaseCharFilter |
Base utility class for implementing a CharFilter. You subclass this, and then record mappings by calling #addOffCorrectMap, and then invoke the correct method to correct an offset. |
MappingCharFilter |
Simplistic CharFilter that applies the mappings contained in a NormalizeCharMap to the character stream, and correcting the resulting changes to the offsets. Matching is greedy (longest pattern matching at a given point wins). Replacement is allowed to be the empty string. |
MappingCharFilterFactory |
Factory for MappingCharFilter. <fieldType name="text_map" class="solr.TextField" positionIncrementGap="100"> <analyzer> <charFilter class="solr.MappingCharFilterFactory" mapping="mapping.txt"/> <tokenizer class="solr.WhitespaceTokenizerFactory"/> </analyzer> </fieldType> @since Solr 1.4 |