4 * @brief Module for running the worker as frontend process
7 use Friendica\Core\Worker;
8 use Friendica\Core\Config;
9 use Friendica\Core\PConfig;
11 function worker_init($a){
13 if (!Config::get("system", "frontend_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 Worker::executeIfIdle();
24 Worker::clearProcesses();
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 = Worker::workerProcess()) {
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 if (poller_claim_process($r[0])) {
45 Worker::execute($r[0]);
51 Worker::unclaimProcess();
55 logger("Front end worker ended: ".getmypid());