如何在nutch中获取文件扩展名?

时间:2011-09-09 08:24:35

标签: solr nutch

我在solr-index maping.xml中添加了以下更改,并在solr scheama中添加了相关字段,但是content_type没有出现在xml结果中,请帮助我。

我已经在solr-index maping.xml中添加了:

 <fields>
    <field dest="content" source="content"/>        
    <field dest="contentType" source="contentType"/>        
  </fields>

我已经在solr架构中添加了:

<field name="contentType" type="string" indexed="true" stored="true" multiValued="true"/>

1 个答案:

答案 0 :(得分:0)

不要忘记在查询中请求新添加的字段contentType。 使用类似`q = text&amp; fl = content,contentType'的查询。

检查http://wiki.apache.org/solr/CommonQueryParameters#fl