Answer the question
In order to leave comments, you need to log in
Limits on the number of AJAX requests to different IP addresses?
It is necessary to send AJAX requests within the local network to several servers, and at the same time and constantly.
Are there any limits on the number of simultaneous requests sent
to different IP addresses?
If so, what about Google Chrome (regular) and IE 11 and up?
more or less like this:
var url = ['192.168.1.120,'192.168.1.121,'192.168.1.122,'192.168.1.123', ...],
for (var i = 0; i < data.length; i++) {
$.ajax({
url: url[i],
success: function(data){
...
}
});
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question