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?

link|improve this question
feedback

5 Answers

up vote 5 down vote accepted

According to John Resig, it's not possible to specify expiration. It's completely up to the user.

http://ejohn.org/blog/dom-storage/

link|improve this answer
So can the user count on the data being available after, say, a year? Can the developer count on the data being available unless the user explicitly deletes it? – Andres Riofrio Feb 26 at 6:47
@AndresRiofrio I can't find any documentation from Mozilla or Microsoft or the W3C that stipulates any sort of mandatory expiration. Thus I think the answer is that yes, the user agent is supposed to keep stored stuff around forever, or until the user explicitly requests that it be deleted (or I guess until your own application deletes its own stuff). – Pointy Feb 26 at 15:09
feedback

I would suggest to store timestamp in the object you store in the localStorage

var object = {value: "value", timestamp: new Date().getTime()}
localStorage.setItem("key", JSON.stringify(object));

You can parse the object, get the timestamp and compare with the current Date, and if necessary, update the value of the object.

var object = JSON.parse(localStorage.getItem("key")),
    dateString = object.timestamp,
    now = new Date().getTime().toString();

compareTime(dateString, now); //to implement
link|improve this answer
feedback

From the W3C draft:

User agents should expire data from the local storage areas only for security reasons or when requested to do so by the user. User agents should always avoid deleting data while a script that could access that data is running.

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.

link|improve this answer
Hmm... perhaps listing a date as part of the data would be a good idea? Or maybe using a different key each time the data changes. – DisgruntledGoat Oct 11 '10 at 22:55
feedback

The lifecycle is controlled by the application/user.

From the standard:

User agents should expire data from the local storage areas only for security reasons or when requested to do so by the user. User agents should always avoid deleting data while a script that could access that data is running.

link|improve this answer
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 readme:

lscache.set

Stores the value in localStorage. Expires after specified number of minutes.

Arguments
key (string)
value (Object|string)
time (number: optional)

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.

link|improve this answer
I found this through searching, so I took a little time to make it 'proper'. Hope you don't mind :) – Tim Post Nov 30 '11 at 8:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.