木子炜培先生

⑴2017底=>(年薪15万)=>31岁 ⑵2018=》(生产生活用品)并且年薪20万=>32岁 ⑶2019=>年薪30万=>把小作坊升级为工厂=>33岁 ⑷2020=>再开一个食品工厂

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
<?php
return [
    'class'     => 'yii\db\Connection',
    'charset'     => 'utf8',

    //多主多从
    'masters'        => [
            ['dsn' => 'mysql:host=localhost;dbname=master1','charset' => 'utf8',],
            ['dsn' => 'mysql:host=localhost;dbname=master2','charset' => 'utf8',],
    ],
    'masterConfig'    =>  [
           'username'     => 'root',
           'password'     => '',
           'attributes' => [
               // use a smaller connection timeout
               PDO::ATTR_TIMEOUT => 10,
          ],
    ],

    'slaves'        => [
            ['dsn' => 'mysql:host=localhost;dbname=slave1','charset' => 'utf8',],
            ['dsn' => 'mysql:host=localhost;dbname=slave2','charset' => 'utf8',],
            ['dsn' => 'mysql:host=localhost;dbname=slave3','charset' => 'utf8',],
    ],
    'slaveConfig'    =>  [
           'username'     => 'root',
           'password'     => '',
           'attributes' => [
               // use a smaller connection timeout
               PDO::ATTR_TIMEOUT => 10,
          ],
    ],

];
?>
View Code

 

posted on 2017-03-12 20:58  木子炜培先生  阅读(211)  评论(0)    收藏  举报