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 2006/04/07 17:50:55 UTC

[Solr Wiki] Update of "SchemaXml" by ErikHatcher

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

The comment on the change is:
Fixing changed link to solr configuration file and misspelling fix (hoss!)

------------------------------------------------------------------------------
  The schema.xml file contains all of the details about which fields your documents can contain, and how those fields should be dealt with when adding documents to the index, or when querying those fields.
  
- A [http://svn.apache.org/repos/asf/incubator/solr/trunk/example/solrconf/schema.xml sample Solr schema.xml with detailed comments] can be found in the Source Repository.
+ A [http://svn.apache.org/repos/asf/incubator/solr/trunk/example/solr/conf/schema.xml sample Solr schema.xml with detailed comments] can be found in the Source Repository.
  
  /!\ :TODO: /!\ we should try to make a DTD for the schema
  
@@ -59, +59 @@

  
  Any number of `<copyField>` declarations can be included in your schema, to instruct Solr that you want it to duplicate any data it sees in the "source" field of documents that are added to the index, in the "dest" field of that document.  You are responsible for ensuring that the datatypes of the fields are compatable, but Solr will process the information in the "dest" field using the appropriate field type (and Analyzer if it's a !TextField).
  
- This is provided as a convinient way to ensure that data is put into several fields, without needing to include the data in the update command multiple times.
+ This is provided as a convenient way to ensure that data is put into several fields, without needing to include the data in the update command multiple times.
  
  === Similarity ===