如何在Solr中使用ExternalFile字段

时间:2015-10-26 09:50:11

标签: xml asp.net-mvc apache solr solrnet

我在solr中使用外部文件字段用于我经常更新的数据类型。我在我的索引目录中创建了一个外部_mycustomfield文件,我在Schema.xml创建了一个新字段:

<fieldType name="mycustomfield" class="solr.ExternalFileField" keyField="Id" defVal="1" indexed="false" stored="false" valType="float"/>

<field name="MyField" type="mycustomfield" indexed="true" stored="true"/>

但我在SolrCore中收到的错误是:

  

Testcore:org.apache.solr.common.SolrException:org.apache.solr.common.SolrException:无法为核心Testcore加载conf:未知的fieldType&#39; mycustomfield&#39;在字段MyField上指定。架构文件是C:\ hds-4.10.1 \ solr-4.10.1 \ server \ solr \ Testcore \ conf \ schema.xml

如何解决此错误?

0 个答案:

没有答案