Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×

Anything for data storage?

Hey, I was looking through the wiki, maybe I missed it, but is there anything that allows you to store something on the order of 10mb of text data (essentially a miniature database)?
1458613871
Lithl
Pro
Sheet Author
API Scripter
If it's static data, you could simply have a JavaScript tab with all of the information. It might make the game a little  bit slow to load, but it should be fine. The state object would normally be the way to go to store dynamic information between sessions, but that is absolutely not an acceptable method for storing a large amount of information, since state gets written to the server every five seconds or so. If you must have dynamic data and you have a lot of it, one possibility might be to store it in one or more handouts.