我目前正在做一个项目,我们选择 Yii 作为我们选择的新框架。我目前正在尝试找出在 Yii 中实现某种自动数据库故障转移的最佳方法。
我目前正在尝试覆盖 CDbConnection 类 - 打开功能。我不确定我是否朝着正确的方向前进。
基本上我要做的是检查数据库连接,如果它失败连接到另一个数据库。简单的概念我只是不知道把它放在哪里。我知道使用 mysqlnd_ms 有更好的方法来做到这一点,但它还没有在我们正在使用的服务器上设置,所以必须想出一种在 Yii 中做到这一点的方法。任何帮助是极大的赞赏。-DA
这就是我到目前为止的想法?
class DaDbConnection extends CDbConnection{
public $dbConnectTries = 6;
public $numDatabases = 3;
private $_tries =0;
private $_db = 1;
/*
* Extends CDbConnection open() method
* Tries to connect to database connections setup in config/main.php up to
* the value of $dbConnectionTries or a connection is successful
* @throws CException If it can not connect to any DBs
*/
protected function open()
{
try{
//try to connect to the default DB
parent::open();
}catch(Exception $e){
if($this->_tries < $this->dbConnectTries){
//If there aren't anymore DBs to try we must start over from the first
if($this->_db >= $this->numDatabases){
$tryDb = 'db';
$this->_db = 0;
}else{
$tryDb = 'db'.$this->_db;
}
$this->_db++;
$this->_tries++;
$this->connectionString = Yii::app()->$tryDb->connectionString;
$this->username = Yii::app()->$tryDb->username;
$this->password = Yii::app()->$tryDb->password;
$this->open();
}else{
throw new CDbException('Could Not Connect to a DB.');
}
}
}
}