Hi, I am currently trying to test the limits of data store Set/GetAsync but every time I do it gives me an error saying
DataStore request was added to queue. If request queue fills, further requests will be dropped. Try sending fewer requests.
I know DataStore Set/GetAsync has a limit of 60 + (#Players * 10)
but I still wanted to test it, so I created this while loop to do so
function PlayerAdded (Player)
local Id = 'Id-'.. Player.UserId
local Count = 0
local Data = {
Key = 'Value'
}
while task.wait() do
local Success, Response = pcall(function()
DataStore:SetAsync(Id, Data)
end)
if Success then
Count += 1
elseif Response then
warn(Count)
end
end
end
It seems to be filling up without actually saving anything and halting my script in a pcall function. Could someone explain why this is happening??
Thank You!
~Tru