Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was just wondering if the sleep() function would have any effect on a high volume (700 - 3000 loops) mail() loop.

So maybe after every ten loops, sleep for a few seconds then do another 10, and so on...

Would that help make the loop more efficient?

Just curious guys!

share|improve this question
Don't use mail() for highvolume output. It's highly inefficient. Use PHPMailer or Swiftmailer instead. – Marc B Jan 6 '12 at 12:46

1 Answer

up vote 1 down vote accepted

I would make each email a job in a queue system like Gearman (as it has PHP bindings) instead of merely putting them in a loop. This way you avoid the PHP process timing out etc if the mail function holds things up.

In the past I have used the Linux at command (a simple queue mechanism) to achieve this with a PHP wrapper script that I wrote: PHP-at-Job-Queue-Wrapper.

I do not think that sleep() would be a good way of making this more efficient or transparent.

share|improve this answer
Seconding this - not sure how mail() works, but connection and latency issues for sending mail show up all the time, and not having a good queue to go to would be a bad idea. – JonLim Jan 6 '12 at 16:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.