I am saving over 100 values to a datastore is this fine?

I am saving over 100 values to a datastore is this fine?
It is just a table of values and properties.

If it doesn’t contain satasync to overwrite data

When you think of it, the set request limit is 60 + numPlayers × 10 and the get request limit is the same. So, probably it would be limited

it’s fine as long as you add a cooldown on saving data then.

What I can understand from the post, I see that the person asking if it is fine or not, so I just replied to him stating it would be limited

In this case, if you are creating a IntValue or Number Value for each one, I would recommend changing all those values ​​to a table with each value, so it would be a bit more optimized:

local Values = {
 ["Value1"] = 0;
 ["Value2"] = 0;
 --so on with each value
}

And yes, it’s totally fine as long as you are using those 100 values.

1 Like

Yes that’s fine, just remember you can’t store 2 or more values per key (a table is a single value so is fine).