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 eh...@apache.org on 2007/03/20 16:41:07 UTC

svn commit: r520435 - /lucene/solr/trunk/client/ruby/solr-ruby/solr/conf/schema.xml

Author: ehatcher
Date: Tue Mar 20 08:41:06 2007
New Revision: 520435

URL: http://svn.apache.org/viewvc?view=rev&rev=520435
Log:
Add _display field that is stored, but not indexed

Modified:
    lucene/solr/trunk/client/ruby/solr-ruby/solr/conf/schema.xml

Modified: lucene/solr/trunk/client/ruby/solr-ruby/solr/conf/schema.xml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/solr-ruby/solr/conf/schema.xml?view=diff&rev=520435&r1=520434&r2=520435
==============================================================================
--- lucene/solr/trunk/client/ruby/solr-ruby/solr/conf/schema.xml (original)
+++ lucene/solr/trunk/client/ruby/solr-ruby/solr/conf/schema.xml Tue Mar 20 08:41:06 2007
@@ -195,6 +195,7 @@
    <dynamicField name="*_facet"  type="string"  indexed="true"  stored="true" multiValued="true"/>
    <dynamicField name="*_zh_text"   type="text_zh"    indexed="true"  stored="true" multiValued="true"/>
    <dynamicField name="*_text"   type="text"    indexed="true"  stored="true" multiValued="true"/>
+   <dynamicField name="*_display"   type="text"    indexed="false"  stored="true" multiValued="true"/>   
  </fields>
 
  <!-- field to use to determine and enforce document uniqueness. -->
@@ -210,6 +211,7 @@
         is added to the index.  It's used either to index the same field differently,
         or to add multiple fields to the same field for easier/faster searching.  -->
  <copyField source="*_text" dest="text"/>
+ <copyField source="*_facet" dest="text"/>
 
  <!-- Similarity is the scoring routine for each document vs. a query.
       A custom similarity may be specified here, but the default is fine