Skip to content

Commit

Permalink
author_wikipedia and title_wikipedia fields don't need indexed
Browse files Browse the repository at this point in the history
  • Loading branch information
hossman committed Jan 28, 2011
1 parent d3684dc commit 94c261d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/isfdb-solr-home/conf/schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@ http://svn.apache.org/repos/asf/lucene/dev/trunk/solr/example/solr/conf/schema.x
<!-- index anything and everything as a simple string -->
<types>
<fieldType name="string" class="solr.StrField"/>
<fieldType name="url" class="solr.StrField" indexed="false" stored="true" />
</types>
<fields>
<field name="ca_id"
type="string" />
<field name="ca_id" type="string" />
<field name="author_wikipedia" type="url" />
<field name="title_wikipedia" type="url" />

<field name="catchall"
type="string"
stored="false"
Expand Down

0 comments on commit 94c261d

Please sign in to comment.