You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2008/11/04 09:42:01 UTC

[Solr Wiki] Trivial Update of "AnalyzersTokenizersTokenFilters" by KojiSekiguchi

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The following page has been changed by KojiSekiguchi:
http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters

------------------------------------------------------------------------------
  Analyzers are components that pre-process input text at index time and/or at  search time.  It's important to use the same or similar analyzers that process text in a compatible manner at index and query time.  For example, if an indexing analyzer lowercases words, then the query analyzer should do the same to enable finding the indexed words.
  
  The Analyzer class is an abstract class, but Lucene comes with a few concrete Analyzers that pre-process their input in different ways. If you need to pre-process input text and queries in a way that is not provided by any of Lucene's built-in Analyzers, you will need to specify a custom Analyzer in the Solr schema.
+ 
+ == Char Filters ==
+ 
+ <!> ["Solr1.4"]
  
  == Tokens and Token Filters ==
  
@@ -71, +75 @@

  }
  }}}
  
+ === CharFilterFactories ===
+ 
+ <!> ["Solr1.4"]
+ 
+ ==== solr.MappingCharFilterFactory ====
+ 
+ Creates `org.apache.solr.analysis.MappingCharFilter`.
  
  === TokenizerFactories ===