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>
     -->
     


Reply via email to