What is the max length?
For a page states, I would hazard a guess that it rides the rails of JS and JS string literals, which in theory is ‘unlimited’ (the size of memory on the user system). For the database, I assume the max length is pretty big, this is all I could find on the forums…inconclusive:
The underlying technology of the bubble db is postgres sql which, for a ‘short text’ has a 64kb size limit or 64000 characters. Also fairly big. Assuming that its not less though.
Finally, for the alternative to what I’m describing (lists), its not clear to me if they also have a similar size limit in the DB (are they stored as text in the db?) . The reason I say this is because a ‘list of things’ doesn’t really like to be more than a couple thousand items. A postgres array should have no trouble with this, however if you take the text limit of 64,000 characters and divide it by a thing’s 32-character UID you get 2000
I’m certainly not an expert on this though, I’d be curious if someone knows the limits for each.