We need some perf tests.
It's hard to accurately measure the performance, so we'll need to discuss how to best approach this.
I've compiled a list with some existing localStorage jsPerf tests we can use as inspiration:
I've noticed localStorage in Safari 5 is about 240x faster than in Chrome 17. It seems like they're doing something right. Anyone why that is?
Not surprising, it's exponentially slower to access big data.
Also, it looks like IndexedDB is way slower than localStorage. Though the jsPerf might be biased. We should create our own to confirm.
Related
https://plus.google.com/117281036949330216542/posts/PM51anxWXSA
We need some perf tests.
It's hard to accurately measure the performance, so we'll need to discuss how to best approach this.
I've compiled a list with some existing localStorage jsPerf tests we can use as inspiration:
http://jsperf.com/localstorage-read-write-test/3
http://jsperf.com/localstorage-vs-objects/16
http://jsperf.com/indexeddb-vs-localstorage/2
http://jsperf.com/localstorage-getitem-setitem-vs-getter-setter
I've noticed localStorage in Safari 5 is about 240x faster than in Chrome 17. It seems like they're doing something right. Anyone why that is?
Not surprising, it's exponentially slower to access big data.
Also, it looks like IndexedDB is way slower than localStorage. Though the jsPerf might be biased. We should create our own to confirm.
Related
https://plus.google.com/117281036949330216542/posts/PM51anxWXSA