. * */ namespace Friendica\Worker; use Friendica\Core\Worker; use Friendica\Database\DBA; use Friendica\DI; /** * Delete all done workerqueue entries */ class CleanWorkerQueue { public static function execute() { DBA::delete('workerqueue', ['`done` AND `executed` < UTC_TIMESTAMP() - INTERVAL 1 HOUR']); // Optimizing this table only last seconds if (DI::config()->get('system', 'optimize_tables')) { // We are acquiring the two locks from the worker to avoid locking problems if (DI::lock()->acquire(Worker::LOCK_PROCESS, 10)) { if (DI::lock()->acquire(Worker::LOCK_WORKER, 10)) { DBA::e("OPTIMIZE TABLE `workerqueue`"); DBA::e("OPTIMIZE TABLE `process`"); DI::lock()->release(Worker::LOCK_WORKER); } DI::lock()->release(Worker::LOCK_PROCESS); } } } }