我正在将一些HTML文档上传到SOLR提取处理程序(Solr-Cell),它以这种形式在头部有META元素:
<meta name="product" content="firstproduct" />
<meta name="product" content="anotherproduct" />
我的架构将产品定义为多值字段:
<field name="product" type="string" indexed="true" stored="true" multiValued="true"/>
我希望将两个产品添加到此字段中的索引中。不幸的是,出现了问题 - 只有成功记录了最后一个产品。
任何人都可以告诉我如何让它发挥作用,谢谢:)