gpt4 book ai didi

search - 如何在 Solr schema.xml 中表示子文档?

转载 作者:行者123 更新时间:2023-12-03 23:50:18 26 4
gpt4 key购买 nike

我正在尝试实现这样的文档层次结构,其中父级是“捆绑包”,子级是“产品”:

Bundle:
id
imageUrl
Products:
[
id:2
type:"t-shirt"
sizes:[S,M,L]
colors:[blue],

id:3
type:"hoodie"
sizes:[M]
colors:[red]
]

这样我就可以支持诸如“M blue products where imageUrl=xyz”之类的查询。

我已经像这样配置了我的 managed-schema.xml:
<field name="_root_" type="string" docValues="false" indexed="true" stored="false"/>
<field name="image_url" type="text_en" uninvertible="false" indexed="false" stored="true"/>
<field name="id" type="string" multiValued="false" required="true" stored="true"/>

<fieldType name="_nest_path_" class="solr.NestPathField"/>
<field name="_product_" type="_nest_path_">
<field name="id" type="string" multiValued="false" required="true" stored="true"/>
<field name="type" type="string" indexed="true" stored="true"/>
<field name="colors" type="strings" multiValued="true" indexed="true" stored="true"/>
<field name="sizes" type="strings" multiValued="true" ndexed="true" stored="true"/>
</field>

我正在用 Java 索引文档,如下所示:
SolrInputDocument parent = new SolrInputDocument();
parent.addField("id", bundle.id);
parent.addField("imageUrl", bundle.imageUrl);
for (Product product : bundle.products) {
SolrInputDocument child = new SolrInputDocument();
child.addField("type", product.type);
child.addField("colors", product.colors);
parent.addChildDocument(child);
}

但是当我尝试索引时,我收到“org.apache.solr.common.SolrException: ERROR: [doc=347] 非多值字段颜色遇到多个值:[Black, Deep Royal, Navy]”。

我是否正确构建了我的 child 文档?

最佳答案

首先,您在尺寸字段中有错误。在那里你写了索引而不是索引。是不是,用于存储颜色的 fieldType“字符串”未在架构文件中声明为多值字段?

关于search - 如何在 Solr schema.xml 中表示子文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59001448/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com