If I split up and store player data on the datastore, can I get into trouble?
I’m working on a game that uses a pretty big amount of data.
And these data easily exceed the maximum that a key can store,
250,000 characters. So I’m going to split and save player data.
Ex) Player_1111111_01, Player_1111111_02…
Is there a possibility that this type of storage will cause problems? Or is it inefficient?
Shouldn’t cause any issues. The limit is more imposed by computer limitations, more than Roblox limitations. (Although it is preferred if you still try and compress the data)