如何同时发送多个发布请求TIdHTTP
?
lHTTP1.Post('http://'+cURL+'/build.php?',lParamList, ResponseContent);
lHTTP2.Post('http://'+cURL+'/build.php?',lParamList, ResponseContent);
lHTTP3.Post('http://'+cURL+'/build.php?',lParamList, ResponseContent);
我尝试使用三个线程来做到这一点,但每条帖子之间都有一秒钟的延迟。
如何在同一秒内发送所有帖子?