Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

What happens to the DataStores limit when a player joins?

Asked by 8 years ago

Hi guys.

I understand that Data Stores have a limit of 60+10NumPlayers for GetAsync(). When a player enters the game a few seconds later, and I already used GetAsync() 5 times, will the number of remaining requests stay the same or what?

GetAsync() Was just an example.

0
I would suggest that you use a caching system to save all the values under 1 "Key" (tostring(Player's UserId)) by using tables! TheDarkOrganism 173 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

Presumably, it gets bumped up by 10 every time a player joins, and then again for every minute the Player is on.

That said, just keep your per-player requests to less than 10 per minute (With some allowance) and you'll be fine.

Ad

Answer this question