Laravel 5.5 中的主从配置

Master Slave Configuration in Laravel 5.5

如何配置 Laravel 5.5 主从 MySQL 复制?

我想分别在master和slave上做写操作和读操作。

可选:有没有办法在理想条件下进行连接池和最大/最小打开连接数。 ?

只需更改您的 config/database.php 文件以包含读(从)和写(主)主机,就像 Laravel docs 建议的那样:

'mysql' => [
    'read' => [
        'host' => '192.168.1.1',
    ],
    'write' => [
        'host' => '196.168.1.2'
    ],
    'sticky'    => true,
    'driver'    => 'mysql',
    'database'  => 'database',
    'username'  => 'root',
    'password'  => '',
    'charset' => 'utf8mb4',
    'collation' => 'utf8mb4_unicode_ci',
    'prefix'    => '',
],