在索引我的数据时,我发现一些嵌套文档没有正确存储。我运行 Solr 8.3 并使用文档中描述的标记关系。
数据
每当根实体Parent
具有任意数量的Child
实体时,我都会生成以下 PHP 数组:
[
'id' => 'b14ac9a0-e255-468b-a673-e125fd73d6f2',
'entity_type' => 'parent',
'title_t' => 'Andrea Cook',
'children' => [
0 => [
'id' => 'ce10380c-8006-4945-9078-296116ad5ab7',
'entity_type' => 'child',
'title_t' => 'Jordan Gibson',
],
1 => [
'id' => '0c191119-fae9-452e-aca2-b724a381f939',
'entity_type' => 'child',
'title_t' => 'Jane Gordon',
],
]
]
然后将其编码为以下 JSON 对象:
{
"id": "b14ac9a0-e255-468b-a673-e125fd73d6f2",
"entity_type": "parent",
"title_t": "Andrea Cook",
"children": [
{
"id": "ce10380c-8006-4945-9078-296116ad5ab7",
"entity_type": "child",
"title_t": "Jordan Gibson"
},
{
"id": "0c191119-fae9-452e-aca2-b724a381f939",
"entity_type": "child",
"title_t": "Jane Gordon"
}
]
}
而这正是 solr 查询返回的内容(加上自动生成的值__root__
,__nest_path__
等)。
问题
每当 aParent
只有一个Child
时,它们最终都会成为 solr 中的一个对象,而不是包含单个对象的数组。
预期搜索结果
{
"id": "b14ac9a0-e255-468b-a673-e125fd73d6f2",
"entity_type": "parent",
"title_t": "Andrea Cook",
"children": [
{
"id": "ce10380c-8006-4945-9078-296116ad5ab7",
"entity_type": "child",
"title_t": "Jordan Gibson"
}
]
}
真实搜索结果
{
"id": "b14ac9a0-e255-468b-a673-e125fd73d6f2",
"entity_type": "parent",
"title_t": "Andrea Cook",
"children": {
"id": "ce10380c-8006-4945-9078-296116ad5ab7",
"entity_type": "child",
"title_t": "Jordan Gibson"
}
}
断言
我已确保 php 数组和 JSON 对象的格式正确,直到它们被传递给 HTTP 客户端。
我已确保数组的数组键children
编号并从 0 开始。
问题
这是预期的行为吗?
我是否必须<fieldType/>
为标记的关系创建一个(即创建一个多值children
字段)?如果是,那我该怎么做?我还没有找到任何解释。
我可以做些什么来始终children
在我的搜索结果中获得一个数组,这样我就不必在迭代之前检查数据?