MysqlSwow.php 251 B

123456789101112
  1. <?php
  2. use Swoole\Database\PDOPool;
  3. class MysqlSwow extends MysqlSwoole
  4. {
  5. public function __construct($size)
  6. {
  7. $this->pool = new Pool("mysql:host=tfb-database;dbname=hello_world", 'benchmarkdbuser', 'benchmarkdbpass', $size);
  8. }
  9. }