(HTML 5) 本地存储多少算太多?
考虑 HTML5 客户端存储的一些问题:
- 本地存储中有多少数据被认为过多?
- 尺寸有限制吗?
- 既然它保存在文件上,它会对浏览器速度产生任何影响吗?
- 为什么使用数据库存储?是否已编入索引? 为什么不使用 LocalStorage,其中 key 是记录的索引(如果唯一),value 是记录 JSON 字符串化的?
编辑
只是答案的后续,在 WebDatabase 项目被删除后,所有浏览器都将继续实现即将成为标准的“IndexedDB "
Some questions considering HTML5 Client-Side Storage:
- How much data in Local Storage is considered too much?
- Is there a limit on the size?
- Since its saved on files will it by any means have any effect on the browsers speed?
- Why use Database storage? is it indexed?
Why not use LocalStorage where key is the index (if unique) of the record, and the value is the record JSON stringified?
EDIT
Just a follow up to the Answer, after the WebDatabase project was dropped, all browser are proceeding to implement the soon to be standard " IndexedDB "
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查另一个问题。
子域的 HTML5 localStorage 大小限制
Check this other Question.
HTML5 localStorage size limit for subdomains