创建多值索引

时间:2010-06-14 11:23:51

标签: java solr

我们如何通过代码创建多值索引。

1 个答案:

答案 0 :(得分:2)

将字段定义为多值:

在schema.xml中,对于要包含多个值的字段,请添加“multiValued”属性:

   <field name="features" type="text" indexed="true" stored="true" multiValued="true"/>

可以找到更多信息:http://wiki.apache.org/solr/SchemaXml#Common_field_options