我在我的HTML5应用程序中使用JayData 1.3.5 Pro连接到IndexDB。
我有一个PRODUCTS(contextEntity)表,我使用以下查询从同一个表中检索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秒内更快地检索搜索结果。我正在尝试找到toArray / toLiveArray的替代品。
请提出另一种改善效果的方法。
谢谢, 斯利拉姆
答案 0 :(得分:2)
在IndexedDB(或任何数据库)中,只有两种查询方式。基于索引的查询和枚举objectStore(或表)中的所有记录。
基于索引的查询非常快且(几乎)与商店中的记录数无关。
随着记录数量的增加,枚举表中的所有记录会变慢。
基于索引的查询要求您创建与查询匹配的索引。如果不需要排序,大多数查询都可以通过索引完成。