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 2010/04/13 16:18:07 UTC

[Solr Wiki] Update of "AnalyzersTokenizersTokenFilters" by RobertMuir

Dear Wiki user,

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

The "AnalyzersTokenizersTokenFilters" page has been changed by RobertMuir.
The comment on this change is: update trunk location.
http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters?action=diff&rev1=78&rev2=79

--------------------------------------------------

  
  A customized protected word list may be specified with the "protected" attribute in the schema. Any words in the protected word list will not be modified by the stemmer.
  
- A [[http://svn.apache.org/repos/asf/lucene/solr/trunk/example/solr/conf/protwords.txt|sample Solr protwords.txt with comments]] can be found in the Source Repository.
+ A [[http://svn.apache.org/repos/asf/lucene/dev/trunk/solr/example/solr/conf/protwords.txt|sample Solr protwords.txt with comments]] can be found in the Source Repository.
  
  {{{
  <fieldtype name="myfieldtype" class="solr.TextField">
@@ -664, +664 @@

  
  A filter that reverses tokens to provide faster leading wildcard and prefix queries.  Add this filter to the index analyzer, but not the query analyzer.  The standard Solr query parser (SolrQuerySyntax) will use this to reverse wildcard and prefix queries to improve performance (for example, translating myfield:*foo into myfield:oof*).  To avoid collisions and false matches, reversed tokens are indexed with a prefix that should not otherwise appear in indexed text.
  
- See the [[http://lucene.apache.org/solr/api/org/apache/solr/analysis/ReversedWildcardFilterFactory.html|javadoc]] for more details, or the [[http://svn.apache.org/viewvc/lucene/solr/trunk/example/solr/conf/schema.xml?view=markup|example schema]].
+ See the [[http://lucene.apache.org/solr/api/org/apache/solr/analysis/ReversedWildcardFilterFactory.html|javadoc]] for more details, or the [[http://svn.apache.org/viewvc/lucene/dev/trunk/solr/example/solr/conf/schema.xml?view=markup|example schema]].
  
  <<Anchor(CollationKeyFilterFactory)>>
  ==== solr.CollationKeyFilterFactory ====