Data store request restrictions, amount of requests

I am new to datastore and have worked long to create that works effectively, then I discoverd the topic on data store limits.
I am currently aware at the moment that the maximum requests per a minute 60 + numPlayers × 10. I am developing a game where their are four players that upon leaving save 1000’s of values in a table each time. Do all of these values count as requests?. Also what will happen if the maximum requests is breached?
Thank you, I just can’t have put all this effort into saving player data just for it to not work because of request limits.

A table doesn’t count as multiple requests but past the maxium requests would at first bottleneck all incoming requests, then if there’s over around 30 requests waiting it starts to delete some of them

2 Likes

The limit doesn’t account for the size of what you’re saving, only how many you times you save in a minute.

3 Likes