We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As explained in #10945 , some users may want to store more than 5MB of data in browser.
Compressed localStorage is not a scalable solution because it only raise the limit to x4 or x5, but no more.
localStorage
IndexedDB is preferable in this situation, because there is no hard limit for storage space.
N/A
A lightweight implementation using one of the libraries on npm.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Prerequisites
Feature Description
As explained in #10945 , some users may want to store more than 5MB of data in browser.
Compressed
localStorage
is not a scalable solution because it only raise the limit to x4 or x5, but no more.IndexedDB is preferable in this situation, because there is no hard limit for storage space.
Motivation
N/A
Possible Implementation
A lightweight implementation using one of the libraries on npm.
The text was updated successfully, but these errors were encountered: