Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: src/site/samples/localstorage/example/README

Issue 27267004: Re-configured samples page. (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698