PStore, v1.0.10

Provides a persistent store.

NOTE: PStore depends on RubyInterpreter.

Other Versions

1.0.10, 1.0.9, 1.0.8

BrowserPlus.PStore.get({params}, function{}())

Retrieve an item from storage.

Test: get()

Parameters

key: string
The storage key.

BrowserPlus.PStore.set({params}, function{}())

Store one item.

Test: set()

Parameters

key: string
The storage key.
value: any
The value to store.

BrowserPlus.PStore.keys({params}, function{}())

Return all the keys in the store.

Test: keys()

Parameters

No Parameters

BrowserPlus.PStore.clear({params}, function{}())

Remove all the items from the store.

Test: clear()

Parameters

No Parameters