(HTML 5) 本地存储多少算太多?

发布于 2024-10-10 14:18:11 字数 377 浏览 1 评论 0原文

考虑 HTML5 客户端存储的一些问题:

  1. 本地存储中有多少数据被认为过多?
  2. 尺寸有限制吗?
  3. 既然它保存在文件上,它会对浏览器速度产生任何影响吗?
  4. 为什么使用数据库存储?是否已编入索引? 为什么不使用 LocalStorage,其中 key 是记录的索引(如果唯一),value 是记录 JSON 字符串化的?

编辑
只是答案的后续,在 WebDatabase 项目被删除后,所有浏览器都将继续实现即将成为标准的“IndexedDB "

Some questions considering HTML5 Client-Side Storage:

  1. How much data in Local Storage is considered too much?
  2. Is there a limit on the size?
  3. Since its saved on files will it by any means have any effect on the browsers speed?
  4. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最近可好 2024-10-17 14:18:11

检查另一个问题。
子域的 HTML5 localStorage 大小限制

  1. 这取决于您的应用程序。
  2. 最大大小为 5 mb
  3. 没有影响。
  4. 数据库存储已弃用,因此不会收到更多更新。当前的浏览器支持它,但它们的实现可能不是标准的。所以使用它不是一个好主意。

Check this other Question.
HTML5 localStorage size limit for subdomains

  1. It depends on your application.
  2. 5 mb is the max size
  3. No impact.
  4. Database storage is deprecated, so it will not receive more updates. Current browsers support it, yet their implementation may not be standard. So it is not a good idea to use it.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文