我有一个solr core 4.10.2
我想为core中的所有行添加一个索引为idx_vehicaltype,默认值为“car”的字段vehicaltype。-我想让这个字段填充“car”
我已经能够在schema.xml中使用以下命令并从core admin重新加载core成功添加字段和索引:
<field name="IDX_VehicleType" type="text_Exact" indexed="true" stored="false" multiValued="true"/>
<field name="VehicleType" type="string" indexed="true" stored="true"/>
<copyField source="VehicleType" dest="IDX_VehicleType"/>
当我尝试使用default属性-and reload为该字段设置默认值,并从core admin优化核心时,该字段不会填充。
<field name="IDX_VehicleType" type="text_Exact" indexed="true" stored="false" multiValued="true" default="car"/>
<field name="VehicleType" type="string" indexed="true" stored="true" default="car"/>
<copyField source="VehicleType" dest="IDX_VehicleType"/>
我在模式浏览器中看到该字段,但它没有显示在结果中。
暂无答案!
目前还没有任何答案,快来回答吧!