A persistent store whose objects are retained between visits.
NOTE: Objects are serialized to JSON during storage to ensure any modifications to the original object are not reflected in the cached copy as a side-effect. Retrieving the cached version will always reflect the object as it existed at the time of storage. However, some property types cannot be serialized to JSON. For more information, read this.
Configures the IndexedDB store to be used.
A Store backed by IndexedDB.
A persistent store that keeps data between site visits.
NOTE: Objects are serialized to JSON during storage to ensure any modifications to the original object are not reflected in the cached copy as a side-effect. Retrieving the cached version will always reflect the object as it existed at the time of storage. However, some property types cannot be serialized to JSON. For more information, read this.
A Store backed by the browser's localStorage Storage provider.
A persistent store whose data will be deleted when the browser window is closed. However, the data will remain during normal navigation and refreshes.
NOTE: Objects are serialized to JSON during storage to ensure any modifications to the original object are not reflected in the cached copy as a side-effect. Retrieving the cached version will always reflect the object as it existed at the time of storage. However, some property types cannot be serialized to JSON. For more information, read this.
A Store backed by the browser's sessionStorage Storage provider.
Provides methods for storing information on the client's machine. The persistence period will vary based on the storage type and configuration.
Importing