任何人都可以指出一篇文章,或者最好提供一些IndexedDB的性能经验(理想情况下在Chrome中) – 提取,插入和更新性能是什么?
似乎有合理的意见,它几乎不可用的数据集超过几千记录,但我不知道这是不是只是由于缺乏索引 – 从概念上来说,它不会比网络存储慢都可以在内部使用键值存储?
谢谢
解决方法
我最近在Websql和IndexedDB之间进行了一些性能比较.令人惊讶的是,IndexedDB赢了(我没想到).
http://blog.oharagroup.net/post/16394604653/a-performance-comparison-websql-vs-indexeddb
编辑:上述URL已关闭,但可在archive.org:http://web.archive.org/web/20160418233232/http://blog.oharagroup.net/post/16394604653/a-performance-comparison-websql-vs-indexeddb上找到
综上所述:
Websql takes on average between ~750-850ms to complete the query and render the results; and IndexedDB takes on average ~300-350ms to render the exact same results.