knadh / localStorageDB

A simple database layer for localStorage and sessionStorage for creating structured data in the form of databases and tables
http://nadh.in/code/localstoragedb
814 stars 128 forks source link

Removal of unnecessary loop #68

Closed w35l3y closed 8 years ago

w35l3y commented 8 years ago

The function update already loops through result_ids.

For N ids in result_ids, it would execute N^2 times!

It doesn't happen anymore and improved a LOT of time mainly for major lists.

knadh commented 8 years ago

@w35l3y Merged. Can't believe this went unnoticed for so long.