S
S
sozercanie_kosmosa2017-04-05 11:42:40
JavaScript
sozercanie_kosmosa, 2017-04-05 11:42:40

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

1 answer(s)
V
Vlad Feninets, 2017-04-05
@fnnzzz

www.browserscope.org/?category=network

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question