使用 usleep() 控制 cURL

发布于 2024-11-30 14:32:49 字数 253 浏览 1 评论 0原文

我正在使用网络服务发送 100 个 http 帖子。但是,该服务每秒只允许 5 个。我想知道 usleep 命令是否是执行此操作的最佳方法。例如:

foreach($JSONarray['DATABASE'] as $E) 
{
    $aws = curl_init();
    //curl stuff
    curl_exec($aws);
    curl_close($aws);
    usleep(200000);
}

I'm using a web service to send 100's of http posts. However, the service only allows 5 per second. I'm wondering if the usleep command is the best way to do this. For example:

foreach($JSONarray['DATABASE'] as $E) 
{
    $aws = curl_init();
    //curl stuff
    curl_exec($aws);
    curl_close($aws);
    usleep(200000);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浴红衣 2024-12-07 14:32:49

现在这还没有经过测试,但它应该为您提供我会做什么的想法(也许这个片段只是按原样工作 - 谁知道......):

// presets
$thissecond = time();
$cnt = 0;

foreach($JSONarray['DATABASE'] as $E) 
{
  while ($thissecond == time() && $cnt > 4) { // go into "waiting" when we going to fast
    usleep(100000); // wait .1 second and ask again
  }

  if ($thissecond != time()) { // remember to reset this second and the cnt
    $thissecond = time();
    $cnt = 0;
  }

  // off with the payload
  $aws = curl_init();
  //curl stuf
  curl_exec($aws);
  curl_close($aws);

  // remember to count it all
  $cnt++;
}

Now this is untested, but it should provide you with the idea of what I would do(and perhaps this snippet just work as it is - who knows...) :

// presets
$thissecond = time();
$cnt = 0;

foreach($JSONarray['DATABASE'] as $E) 
{
  while ($thissecond == time() && $cnt > 4) { // go into "waiting" when we going to fast
    usleep(100000); // wait .1 second and ask again
  }

  if ($thissecond != time()) { // remember to reset this second and the cnt
    $thissecond = time();
    $cnt = 0;
  }

  // off with the payload
  $aws = curl_init();
  //curl stuf
  curl_exec($aws);
  curl_close($aws);

  // remember to count it all
  $cnt++;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文