OLD | NEW |
(Empty) | |
| 1 Local Storage is a simple key/value storage interface |
| 2 for Strings. Use Dart's local storage interface as a |
| 3 Map. |
| 4 |
| 5 See also: |
| 6 |
| 7 * http://api.dartlang.org/docs/continuous/dart_html/Storage.html |
| 8 * https://developer.mozilla.org/en-US/docs/DOM/Storage |
| 9 * http://diveintohtml5.info/storage.html |
| 10 |
| 11 Note, local storage, though widely supported, is a |
| 12 synchronous API. Because it involves IO, this interface |
| 13 should not be used for high throughput operations. |
| 14 You might consider IndexedDB as an alternative. |
| 15 |
| 16 For simple string keys and values, and as a replacement |
| 17 for cookies, local storage is useful. |
OLD | NEW |