2010/4/28 10oui@free.fr:
Hi, I'd like to do a lot of api.php requests (300k). Is it fair regarding server or is there a maximum of nb or frequency requests to respect ?
I recommend you 1) educate yourself about ways to reduce the number of requests and 2) don't execute too many requests in parallel. In fact, when unsure, don't execute *any* requests in parallel (wait for a request to finish before sending another one) and maybe wait a short while between requests.
Roan Kattouw (Catrope)