localStorage Size Limits… What are the options?

2019-01-28 02:48发布

I plan to use persistant localStorage in one of my projects and i have found out that the size limitation is 5 MB (chrome). I searched other frameworks which implmented the same thing, like Mootools, Dojo, Lawnchair but i couldnt find out what are their size limitations.

Does anyone know what are the size limitation is in these. And what other options are there which i can use if not the one already stated above.

3条回答
该账号已被封号
2楼-- · 2019-01-28 02:56

localstorage limits are not tied to the javascript framework, but to the browser you're using. Currently specs are suggesting to limit the storage space to 5MB and this is the space maximum available on modern browser

On older versions of internet explorer (IE<8) userData behaviour (which mimics the localstorage) has a limit of 128kb for page (512kb is the maximum amount for an intranet page)

anyway for a complete list see http://dev-test.nemikor.com/web-storage/support-test/

查看更多
神经病院院长
4楼-- · 2019-01-28 03:19

If you store JSON into your localStorage you can save space using a compression tool, like : https://github.com/k-yak/JJLC

查看更多
登录 后发表回答