应用程序缓存清单 +本地存储大小限制
我正在构建一个可能有大量离线存储需求的应用程序,我想知道是否可以同时使用离线缓存清单 (5MB) 和本地存储 (5MB) 来使用 10MB 存储。
请注意,这是一个 Intranet 应用程序,因此我们可以控制设备。
I'm building an application that might have heavy offline storage needs, and I was wondering if it's possible to use both an offline cache manifest (5MB) as well as localstorage (5MB) to be able to use 10MB of storage.
Note that this is an intranet application, so we have control of the devices.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经在 Chrome、Firefox、Opera 和 Safari 中对此进行了测试,并且所有浏览器都使用这两种技术,限制为 5 mb。所以这是可能的......
注意:
- 本地存储和离线应用程序缓存的限制因浏览器而异。
- IE不支持离线应用程序缓存
- 在 Opera 和 Safari 中,您可以存储超过 5mb 的本地存储。
- 在 chrome 中,您可以通过 url: chrome://appcache-internals/ 和地图 localStorage 中的 localStorage 检查应用程序缓存的大小。
I have tested this in Chrome, Firefox, Opera and Safari and all browser use for both technique a limit of 5 mb. So it's possible...
Note:
- The limit of localStorage and Offline Application Caching varies per browser.
- IE doesn't support Offline Application Caching
- In Opera and Safari you can store more than 5mb of localStorage.
- In chrome you can check size of application cache by url: chrome://appcache-internals/ and localStorage in the map localStorage.