Re: [PHP-DEV] asynchronous code execution using php in cgi mode

2010-03-22 Thread Ferenc Kovacs
you can use asyncronous file?/socket io with stream_select, with mysqlnd you can create asyncronous queries. you can fork process with pcnt_fork and send signals between process, or you can use gearman to "outsource" your heavy weight functions to other machines. Tyrael On Tue, Mar 23, 2010 at 7:

[PHP-DEV] asynchronous code execution using php in cgi mode

2010-03-22 Thread Bharat Nagwani
Hello, I have searched and haven't found a way to execute php in asynchronous mode. We are using php(5.2 on unix) in cgi mode. Is there a way to do this? Thanks much