I read few articles about IndexdDB, but couldn\'t find details about the lifetime of persisted data. I plan to use it for a session of data manipulation and upload once the
It's like localStorage, so it's cross-session, meaning restarting browser or system won't affect what is stored in it. However, user can clear it like clearing cookie. So it's just like persistent cookie, you don't trust it from the server-side, and you always need to check its integrity.