View Single Post
Old 09-03-2012, 05:00 PM   PM User | #3
DaveyErwin
Regular Coder

 
Join Date: Aug 2010
Posts: 814
Thanks: 12
Thanked 168 Times in 166 Posts
DaveyErwin is on a distinguished road
Making 5000 XMLHttprequest objects
will never be a good idea.You should
make 4 at the start of your code and
reuse them, it is not useful to have
more that 4 making a requst of the
same URL at the same time as most
browser are limited to 4 or less connections
to the same URL at the same time.
DaveyErwin is offline   Reply With Quote