RE: [PHP] Numerical Recipe - Scheduling Question

2009-05-29 Thread kyle.smith
I'm confused as to why cron doesn't work for you. It doesn't explicitly tell you when the next X occurences will be, but math does. If you schedule something to run every 5 minutes starting at 1:45 PM, it's simple work to be able to report that the next times would be 1:50 PM, 1:55 PM, 2:00 PM

Re: [PHP] Numerical Recipe - Scheduling Question

2009-05-29 Thread Stuart
2009/5/29 kyle.smith kyle.sm...@inforonics.com: I'm confused as to why cron doesn't work for you.  It doesn't explicitly tell you when the next X occurences will be, but math does.  If you schedule something to run every 5 minutes starting at 1:45 PM, it's simple work to be able to report that

Re: [PHP] Numerical Recipe - Scheduling Question

2009-05-29 Thread Bastien Koert
On Fri, May 29, 2009 at 2:12 PM, Stuart stut...@gmail.com wrote: 2009/5/29 kyle.smith kyle.sm...@inforonics.com: I'm confused as to why cron doesn't work for you. It doesn't explicitly tell you when the next X occurences will be, but math does. If you schedule something to run every 5

Re: [PHP] Numerical Recipe - Scheduling Question

2009-05-29 Thread Stuart
2009/5/29 Bastien Koert phps...@gmail.com: On Fri, May 29, 2009 at 2:12 PM, Stuart stut...@gmail.com wrote: Hmm, might have to write that lot up as a blog post with some example code. Sometime... I would be very interested in that. I am developing a project where a queue is required to