EMY

2018-01-05 Thread Rune Back
- What if my app uses a lot of local data, let's say 10 or 10s of Mb. Any suggestions of a database to use so that my app won't be slowed down? - Everyone is used to pushing a button in order to download and install an app. How do I make an hml5 app downloadable that way? - How reliable are the s

Re: EMY

2018-01-05 Thread Remi Grumeau
Hi Rune, If you have dozens of Mb of datas, then LocalStorage is a dead end. It has been designed to be a local cookie (aka not available server-side, so not sent in every http request). So just to store a string or two (username, json string of params, ...), not megabytes of text. IndexedDb is

Re: EMY

2018-01-05 Thread Rune Back
Thank you, Remi!​ If you have dozens of Mb of datas, then LocalStorage is a dead end. It has > been designed to be a local cookie (aka not available server-side, so not > sent in every http request). So just to store a string or two (username, > json string of params, ...), not megabytes of text.