4 * @brief Module for running the poller as frontend process
6 require_once("include/poller.php");
8 use \Friendica\Core\Config;
9 use \Friendica\Core\PConfig;
11 function worker_init($a){
13 if (!Config::get("system", "frontend_worker") OR !Config::get("system", "worker")) {
17 // We don't need the following lines if we can execute background jobs.
18 // So we just wake up the worker if it sleeps.
19 if (function_exists("proc_open")) {
20 call_worker_if_idle();
24 clear_worker_processes();
26 $workers = q("SELECT COUNT(*) AS `processes` FROM `process` WHERE `command` = 'worker.php'");
28 if ($workers[0]["processes"] > Config::get("system", "worker_queues", 4)) {
34 logger("Front end worker started: ".getmypid());
38 if ($r = poller_worker_process()) {
40 // On most configurations this parameter wouldn't have any effect.
41 // But since it doesn't destroy anything, we just try to get more execution time in any way.
44 poller_execute($r[0]);
51 logger("Front end worker ended: ".getmypid());