laravel实现数据库读写分离配置或者多读写分离配置

时间:2014-09-22 12:30:02   收藏:0   阅读:1678
config\database.php里

读写分离:
‘mysql‘ => array( ‘read‘ => array( ‘host‘ => ‘192.168.1.1‘, ), ‘write‘ => array( ‘host‘ => ‘196.168.1.2‘ ), ‘driver‘ => ‘mysql‘, ‘database‘ => ‘database‘, ‘username‘ => ‘root‘, ‘password‘ => ‘‘, ‘charset‘ => ‘utf8‘, ‘collation‘ => ‘utf8_unicode_ci‘, ‘prefix‘ => ‘‘, ),

多读写分离:

‘mysql‘ => array(
    ‘read‘ => array(
        ‘host‘ => ‘192.168.1.1‘,
     ‘host‘ => ‘192.168.1.3‘,

), ‘write‘ => array( ‘host‘ => ‘196.168.1.2‘,
 ‘host‘ => ‘192.168.1.4‘,

), ‘driver‘ => ‘mysql‘, ‘database‘ => ‘database‘, ‘username‘ => ‘root‘, ‘password‘ => ‘‘, ‘charset‘ => ‘utf8‘, ‘collation‘ => ‘utf8_unicode_ci‘, ‘prefix‘ => ‘‘, ),
 
 
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!