Relative Content

Tag Archive for local-storage

How to verify data from localStorage on a server

On my mobile app, I am storing the username of a logged in person, and downloading some data for the given/stored username. When the user checks for updates to his data content on the server, the server dishes out a delta of the content, based on the username. The app then updates its local display accordingly.

Manage local storage when data is updated

I have an app where an admin can assign tasks to various users. If one of the users (user A) are logged in somewhere, their number of tasks are assigned to a local storage (so i dont have to call the db again).