Merge pull request #5055 from annando/worker-spawning

Fix for the slow spawning of workers
This commit is contained in:
Tobias Diekershoff 2018-05-15 08:22:33 +02:00 committed by GitHub
commit 0848cef605
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 12 deletions

View File

@ -861,18 +861,6 @@ class App
return;
}
// If the last worker fork was less than 2 seconds before then don't fork another one.
// This should prevent the forking of masses of workers.
$cachekey = 'app:proc_run:started';
$result = Cache::get($cachekey);
if (!is_null($result) && ( time() - $result) < 2) {
return;
}
// Set the timestamp of the last proc_run
Cache::set($cachekey, time(), CACHE_MINUTE);
array_unshift($args, ((x($this->config, 'php_path')) && (strlen($this->config['php_path'])) ? $this->config['php_path'] : 'php'));
for ($x = 0; $x < count($args); $x ++) {

View File

@ -999,6 +999,7 @@ class Worker
}
/**
* @brief Spawns a new worker
* @return void
*/
public static function spawnWorker()