Am I using too much data?

Am I using too much data is on risk on data size limit?

This is why the first-join table structure looks like.

{["Furnitures"] = {}, ["Plots"] = {}, ["Lehmons"] = 0, ["Levels"] = {Level = 1, CurrentXP = 0}, ["LastLogin"] = os.time(), ["Messages"] = {[1]=false}}

Furnitures contains strings.
Plots contains dictionaries that have strings and cframes.
Messages contains an identifier-number based dictionary that determines if a message has been read or not according to the boolean.
image

It doesn’t look like it is too large. Generally, you should try to keep it below 4MB, or about 4 million characters when it is encoded as a json string.

1 Like

As long you aren’t saving information about multiple users under a single datastore key this should not be a concern. No matter what you do you will always be way lower than the limit, unless you want to save something that by nature has a lot of information/bytes. For example serialized instances/builds, images/drawings, neural network weights and whatever else might require large amounts of data to be represented.

1 Like