Application cache manifest + local storage size

I am creating an application that can have severe problems with offline storage, and I was wondering if it is possible to use both an offline cache manifest (5 MB) and localstorage (5 MB) to be able to use 10 MB of memory.

Please note that this is an intranet application, so we control the devices.

+4
source share
1 answer

I tested this in Chrome, Firefox, Opera and Safari, and all browsers used a 5 mb limit for both methods. So it's possible ...

Note: - The restriction for local storage and offline caching of applications depends on the browser. - IE does not support offline application caching - In Opera and Safari you can store more than 5 MB of local storage. - In chrome, you can check the size of the application cache by URL: chrome: // appcache-internals / and localStorage on the localStorage map.

+3
source

Source: https://habr.com/ru/post/1341204/


All Articles