1

在索引我的数据时,我发现一些嵌套文档没有正确存储。我运行 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在我的搜索结果中获得一个数组,这样我就不必在迭代之前检查数据?


uuidgenerator.net , uinames.com

4

2 回答 2

0

array_map我终于想到,我在 PHP ( , array_merge, ...) 中编写的数组操作正在创建具有奇怪索引的数组。

为了解决这个问题,我不得不调用array_values,它创建了原始的零索引数组。

于 2020-05-07T09:00:12.103 回答
0

"solr.TrimFieldUpdateProcessorFactory"从我的删除updateRequestProcessorChain in solrconfig.xml解决了我的问题。(解决方案 8.8.1)

于 2021-09-13T17:03:28.670 回答