shlink/config/autoload/swoole.global.php

23 lines
465 B
PHP
Raw Normal View History

<?php
2019-10-05 18:26:10 +03:00
declare(strict_types=1);
return [
2020-01-01 23:11:53 +03:00
'mezzio-swoole' => [
2020-05-01 19:24:48 +03:00
// Setting this to true can have unexpected behaviors when running several concurrent slow DB queries
'enable_coroutine' => false,
'swoole-http-server' => [
'host' => '0.0.0.0',
'process-name' => 'shlink',
'options' => [
'worker_num' => 16,
'task_worker_num' => 16,
],
],
],
];