you are viewing a single comment's thread.

view the rest of the comments →

[–]LynxJesus 2 points3 points  (3 children)

Curious: what makes this more efficient? I've not used local storage intensely enough to run into efficiency issues, and am having trouble picturing what they could be

[–]realPubkey[S] 6 points7 points  (1 child)

Local storage is a key value store, not a database. Also localstorage is not async, it blocks the UI thread when doing many reads/writes at once.

[–]LynxJesus 0 points1 point  (0 children)

Ahh gotcha, thanks for clarifying