You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The storage sync limit is 8KB per item, and some users are running into this error since the site settings are all stored as a single item.
Short term solution is to swap away from the synced storage to local storage, which has a total limit of 10MB and no special per-item limit.
Other ideas for making better use of the available storage:
Limit on total storage is 100 KB, so splitting the site settings up into separate "buckets" would make better use of the total storage. (The size of each item depends on the length of the URL and how many modifiers are being saved, so this would need to be calculated dynamically every time we save.)
Generic compression algorithm applied to existing data. Open question: Can the storage API store raw byte data? Or would I have to base 64 encode it?
Special-purpose binary encoding for schemes/modifiers. This would require more discipline in versioning settings data and would probably benefit from pulling in a dependency on protobuf or something.
The text was updated successfully, but these errors were encountered:
The storage sync limit is 8KB per item, and some users are running into this error since the site settings are all stored as a single item.
Short term solution is to swap away from the synced storage to local storage, which has a total limit of 10MB and no special per-item limit.
Other ideas for making better use of the available storage:
The text was updated successfully, but these errors were encountered: