We are trying to store organization-related informations using the entity storage and we quickly run into the size limit. They are definitely too small for our use case. Is there any way to bypass the limits?
Or maybe any of you have your own unique solution for this problem?
Hi, @Nowak. We’ve been using the following approach to deal with Storage limits, and (for our use cases) it’s been working fine for almost a year now:
- Normalize the stored data to reduce duplicated data
- Split this normalized data into objects that fit into storage
- Write all the data out asynchronously using Promise.all
- On load, read data asynchronously and denormalize
A simpler option would be to convert your data to JSON and then break that string up into pieces that fit into storage, but this isn’t as thrifty.