database.php 317 B

123456789101112131415
  1. <?php
  2. declare(strict_types=1);
  3. return [
  4. 'host' => 'tfb-database',
  5. 'port' => 3306,
  6. 'database' => 'hello_world',
  7. 'username' => 'benchmarkdbuser',
  8. 'password' => 'benchmarkdbpass',
  9. 'charset' => 'utf8mb4',
  10. 'options' => [
  11. ],
  12. 'size' => \intdiv(512, swoole_cpu_num()) // 连接池size
  13. ];