Re: [nyphp-talk] Writing daemons in PHP

2011-04-09 Thread guilhermebla...@gmail.com
You should look at Gearman project for PHP. =) http://php.net/manual/en/book.gearman.php http://www.phpclasses.org/blog/post/108-Distributing-PHP-processing-with-Gearman.html http://www.slideshare.net/felixdv/high-gear-php-with-gearman http://weierophinney.net/matthew/archives/240-Writing-Gearman-

Re: [nyphp-talk] Writing daemons in PHP

2011-04-09 Thread Rolan Yang
I use this: http://pear.php.net/package/System_Daemon and it's worked flawlessly for the past 2 years. ~Rolan On 4/7/2011 5:38 PM, Gary Mort wrote: Just wondering what, in general, others are using for writing daemons in PHP. Just code it directly using libevent... or using a framework suc

Re: [nyphp-talk] Writing daemons in PHP

2011-04-08 Thread Anthony Wlodarski
I don't have knowledge or expertise in this area but I have written a few things in node.js and using upstart to control the jobs. However doing my own research on how to write a daemon in PHP you should check out http://simas.posterous.com/writing-a-php-daemon-application. -Anthony On 04/07

[nyphp-talk] Writing daemons in PHP

2011-04-07 Thread Gary Mort
Just wondering what, in general, others are using for writing daemons in PHP. Just code it directly using libevent... or using a framework such as phpdaemon, https://github.com/kakserpom/phpdaemon For a first pass, I need to set up a more intelligent CPULimit app to meet my specific goals. Si