Hi all,
We have a script which updates data on a number of sites in response to an event. This is done by calling a URL on each of the sites. The problem is that at busy times, this can take a long time, and cause slow loading.
The URL calls are currently done using
fopen("http://www.myurl.com", "r");
This can happen up to 40 times in a row, each call to a different URL. It's by no means ideal, but it's what I have to work with right now.
PHP waits for each call to respond, before going to the next one. Is it possible to get it to just move onto the next call without waiting?
TIA