I don’t think the documentation specified this clearly, but this is a question I’m curious about datastore.
According to the documentation, get requests limit per server are:
60 + numPlayers × 10
Let’s say I have two datastores. I will have a 1-player server. This means my get request limit is 70 requests per minute. My first datastore would send out 60 requests per minute, my second datastore would send out 30 requests per minute.
Technically, if the limit was per datastore, for the first datastore I still have 10 more requests I could use in the same minute. But if the limit is the whole datastore, the combined requests from both datastores is 90 requests and it exceeds that limit.
So which one is the case?