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

Question about get requests, and how many is too many?

Asked by
Notwal 2
7 years ago

I made a JS script that does some stuff involving getting data from each server in a roblox game, which obviously involves a lot of get requests/second. I was wondering how many requests/second is too much, basically where is the line between what looks like a DDoS attack and what doesn't.

1 answer

Log in to vote
0
Answered by 7 years ago
Edited 7 years ago

If you check the wiki page, you will see that you are limited to 500 requests per minute per server. This equates to about 8 requests per second, which is generally more than enough for most applications of the HttpService. Any requests made after that will simply fail. Also note that this number is (as far as I know) shared with POST requests too.

0
I was not talking about sending get requests via roblox game sever, I was talking about a script inserted into chrome console. Notwal 2 — 7y
0
I'm not exactly sure how you would even go about that; in that case I would have the servers send POST requests to a web server which then handles the input.. IDidMakeThat 1135 — 7y
Ad

Answer this question