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/07/29 00:09:26 UTC

[Solr Wiki] Update of "AnalyzersTokenizersTokenFilters" by HossMan

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 HossMan:
http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters

The comment on the change is:
comment on expansion stemming

------------------------------------------------------------------------------
  
  There are two types of stemming strategies:
     * [http://tartarus.org/~martin/PorterStemmer/ Porter] or Reduction stemming &#151; A transforming algorithm that reduces any of the forms of a word such  "runs, running, ran", to its elemental root e.g., "run". Porter stemming must be performed ''both'' at insertion time and at query time.
-    * Expansion stemming &#151; Takes a root word and 'expands' it to all of its various forms &#151; can be used ''either'' at insertion time ''or'' at query time. 
+    * Expansion stemming &#151; Takes a root word and 'expands' it to all of its various forms &#151; can be used ''either'' at insertion time ''or'' at query time.  One way to approach this is by using the [#SynonymFilter SynonymFilterFactory]
  
  == Analyzers ==