标签: java solr
我们如何通过代码创建多值索引。
答案 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