Laravel 自动实现mysql-proxy的读写分离,读库可以配置多个,写库只有一个
'mysql' => [ 'read' => [ 'host' =>[ '10.100.20.112', '10.100.20.113', ] ], 'write' => [ 'host' => '10.100.20.111', ], 'driver' => 'mysql', 'database' => 'laravel', 'username' => 'root', 'password' => '111111', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '',]