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 ho...@apache.org on 2006/08/30 20:22:33 UTC

svn commit: r438575 - /incubator/solr/trunk/example/solr/conf/schema.xml

Author: hossman
Date: Wed Aug 30 11:22:33 2006
New Revision: 438575

URL: http://svn.apache.org/viewvc?rev=438575&view=rev
Log:
modified example of using an existing analyzer to refrence one that supports a default constructor

Modified:
    incubator/solr/trunk/example/solr/conf/schema.xml

Modified: incubator/solr/trunk/example/solr/conf/schema.xml
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/example/solr/conf/schema.xml?rev=438575&r1=438574&r2=438575&view=diff
==============================================================================
--- incubator/solr/trunk/example/solr/conf/schema.xml (original)
+++ incubator/solr/trunk/example/solr/conf/schema.xml Wed Aug 30 11:22:33 2006
@@ -88,10 +88,10 @@
         <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
       </analyzer>
     </fieldtype>
-    <!-- One could also specify an existing Analyzer implementation in Java 
-         via the class attribute on the analyzer element:
+    <!-- One could also specify an existing Analyzer class that has a
+         default constructor via the class attribute on the analyzer element
     <fieldtype name="text_lu" class="solr.TextField">
-      <analyzer class="org.apache.lucene.analysis.snowball.SnowballAnalyzer"/>
+      <analyzer class="org.apache.lucene.analysis.el.GreekAnalyzer"/>
     </fieldType>
     -->