我正在将一些 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"/>
我希望将这两种产品都添加到该字段中的索引中。不幸的是,出了点问题 - 只有最后一个产品被成功记录。
谁能告诉我如何让它工作,谢谢:)