[HTML] Point out that local/session store, and cookies may be invalidated by user (#191)
This commit is contained in:
parent
77c875b3e0
commit
9e40dca67a
|
|
@ -111,6 +111,8 @@ All the above-mentioned technologies are key-value storage mechanisms on the cli
|
|||
| Capacity (per domain) | 4kb | 5MB | 5MB |
|
||||
| Accessibility | Any window | Any window | Same tab |
|
||||
|
||||
_Note: If the user decides to clear browsing data via whatever mechanism provided by the browser, this will clear out any `cookie`, `localStorage`, or `sessionStorage` stored. It's important to keep this in mind when designing for local persistance, especially when comparing to alternatives such as server side storing in a database or similar (which of course will persist despite user actions)._
|
||||
|
||||
###### References
|
||||
|
||||
* https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies
|
||||
|
|
|
|||
Loading…
Reference in New Issue