我正在使用 Solr 来索引一些内容,但目前,这些内容应该与父/子相关。
我有这样的事情:
<doc>
<id>*an Id*</id>
<path>*a path*</path>
<title>*a title*</title>
<type>**Page**</type>
</doc>
<doc>
<id>*an other Id*</id>
<path>*a other path*</path>
<title>*a other title*</title>
<type>**Component**</type>
</doc>
但我想有一些接近的东西:
<doc>
<id>*an Id*</id>
<path>*a path*</path>
<title>*a title*</title>
<type>**Page**</type>
<child>
<id>*an Id*</id>
<path>*a path*</path>
<title>*a title*</title>
<type>**Component**</type>
</child>
</doc>
我想知道这是否可能,我怎样才能以schema.xml
这种方式定义我的?
我正在使用Solr 3.6
,我无法更改它。
我希望有人能帮我一把。
问候,德克斯。