我在我的HTML5应用程序中使用Jaydata 1.3.5 Pro将其连接到indexDB。
我有一个产品(上下文义)表,我正在使用以下查询从同一表中检索15839记录。
dataContext.onReady(function () {
contextEntity
.filter(function (result) {
result.prod_num.toLowerCase.contains(this.prod_num) === -1 ||
result.vendor_name.toLowerCase.contains(this.vendor_name) === -1 ||
result.vendor_prod_num.toLowerCase.contains(this.vendor_prod_num) === -1 ||
result.desc1.toLowerCase.contains(this.desc1) === -1 ||
result.desc2.toLowerCase.contains(this.desc2) === -1 ||
result.desc3.toLowerCase.contains(this.desc3) === -1 ||
result.lookup.toLowerCase.contains(this.lookup) === -1 ||
result.icmastx_desc1.toLowerCase.contains(this.icmastx_desc1) === -1 ||
result.icmastx_desc5.toLowerCase.contains(this.icmastx_desc5) === -1 ||
result.icmastx_desc7.toLowerCase.contains(this.icmastx_desc7) === -1
},
{
prod_num: productPageProperty.search.toLowerCase(), // search input
vendor_name: productPageProperty.search.toLowerCase(),
vendor_prod_num: productPageProperty.search.toLowerCase(),
desc1: productPageProperty.search.toLowerCase(),
desc2: productPageProperty.search.toLowerCase(),
desc3: productPageProperty.search.toLowerCase(),
lookup: productPageProperty.search.toLowerCase(),
icmastx_desc1: productPageProperty.search.toLowerCase(),
icmastx_desc5: productPageProperty.search.toLowerCase(),
icmastx_desc7: productPageProperty.search.toLowerCase()
})
.toLiveArray(function (result) {
if (result != null && result.length > 0) {
result.forEach(function (item) {
productViewModel.push({
unit_conv: item.unit_conv,
cartid_sequence_num: null,
selling_disc: item.selling_disc,
pcat: item.pcat,
division_ck: item.division_ck,
uom: item.uom,
prod_num: item.prod_num,
desc1: item.desc1,
desc2: item.desc2,
net_avail: item.net_avail,
selling_price: item.selling_price,
cust_price: item.cust_price,
cust_disc: item.cust_disc,
qty_ordered: null,
extension: null
})
});
}
else {
productViewModel = [];
}
});
现在发生的是,要检索搜索输入的结果需要30秒。是否有一种方法来优化此代码,以便我可以像3秒钟内更快地重述搜索结果。我试图找到托瓦雷/托利维拉雷的替代方案。
请提出一种提高性能的替代方法。
谢谢Sriram
在indexeddb(或任何数据库)中,只有两种方法可以查询。索引基本查询并枚举对象存储(或表)中的所有记录。
索引基本查询非常快,(几乎)与商店中的记录数无关。
随着记录数量的增加,表中的所有记录都会变慢。
索引底座查询要求您创建与查询匹配的索引。如果不需要排序,则大多数查询可以通过索引进行。