我正在使用 Oracle XML DB 来管理我的客户的资料。我想让配置文件可扩展且搜索引擎友好(我计划使用 Apache Solr 进行搜索)。我目前构想了两种不同的结构:
<profile>
<picture>
</picture>
<am>
<sex>male</sex>
<born_on>02/20/1989</born_on>
<job>programmer</job>
</am>
<contact_information>
<address>somewhere</address>
<zip_code>somenumber</zip_code>
<cellphone>somenumber</cellphone>
</contact_information>
<famliy>
<parents>
<father></father>
<mother></mother>
</parents>
</famliy>
<study_at>
</study_at>
<work_at>
</work_at>
<live_at>
</live_at>
<like>
</like>
....
第二种是
<profile>
<list name="am">
<item name="sex">male</item>
<item name="job">programmer</item>
</list>
<list name="study at">
<item>someschool</item>
<item>someschool</item>
</list>
....
</profile>
第一个可以很容易地被 XPath 解析,而第二个可以有空格和更多的属性。哪一个更好?谢谢你。