| 1234567891011121314151617181920212223242526272829 |
- <?php
- return [
- 'default' => 'mysql',
- 'connections' => [
- 'mysql' => [
- 'driver' => 'mysql',
- 'host' => '127.0.0.1',
- 'port' => '3306',
- 'database' => 'your_database',
- 'username' => 'your_username',
- 'password' => 'your_password',
- 'charset' => 'utf8mb4',
- 'collation' => 'utf8mb4_general_ci',
- 'prefix' => '',
- 'strict' => true,
- 'engine' => null,
- 'options' => [
- PDO::ATTR_EMULATE_PREPARES => false, // Must be false for Swoole and Swow drivers.
- ],
- 'pool' => [
- 'max_connections' => 5,
- 'min_connections' => 1,
- 'wait_timeout' => 3,
- 'idle_timeout' => 60,
- 'heartbeat_interval' => 50,
- ],
- ],
- ],
- ];
|