【发布时间】:2019-12-06 19:26:10
【问题描述】:
如何在后台查看数据库列索引? 假设我在自定义 itemtype(在 *-items.xml 中定义)上添加了 3 个这样的索引,如下所示:
<itemtype generate="true" code="Model"..>
<attributes>
.......
</attributes>
<indexes>
<index name="column1Idx">
<key attribute="column1" />
</index>
<index name="column2Idx">
<key attribute="column2" />
</index>
<index name="compositeIdx">
<key attribute="column1" />
<key attribute="column2" />
</index>
</indexes>
</itemtype>
注意我正在使用 HSQL DB 进行开发。
【问题讨论】:
标签: database indexing hybris backoffice