How many days data, stored in localStorage (as a part of Dom Storage HTML 5) available? Can i set expires time for data which, i puts to localStorage?
|
feedback
|
|
According to John Resig, it's not possible to specify expiration. It's completely up to the user. | |||||
feedback
|
|
I would suggest to store timestamp in the object you store in the localStorage
You can parse the object, get the timestamp and compare with the current Date, and if necessary, update the value of the object.
| |||
|
feedback
|
|
From the W3C draft:
You'll want to do your updates on your schedule using setItem(key, value); that will either add or update the given key with the new data. | |||
feedback
|
|
The lifecycle is controlled by the application/user. From the standard:
| |||
|
feedback
|
|
You can use lscache. It handles this for you automatically, including instances where the storage size exceeds the limit. If that happens, it begins pruning items that are the closest to their specified expiration. From the
This is the only real difference between the regular storage methods. Get, remove, etc work the same. If you don't need that much functionality, you can simply store a time stamp with the value (via JSON) and check it for expiry. Noteworthy, there's a good reason why local storage is left up to the user. But, things like lscache do come in handy when you need to store extremely temporary data. | ||||
feedback
|