Tagged Questions
8
votes
4answers
3k views
PHP Daemon/worker environment
Problem: I want to implement several php-worker processes who are listening on a MQ-server queue for asynchronous jobs. The problem now is that simply running this processes as daemons on a server ...
4
votes
5answers
1k views
PHP: Coding long-running scripts when servers impose an execution time limit
FastCGI servers, for example, impose an execution time limit on PHP scripts which cannot be altered using set_time_limit() in PHP. IIS does this too I believe.
I wrote an import script for a PHP ...