溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用Yii框架怎么對MySQL數(shù)據(jù)庫進(jìn)行讀寫分離

發(fā)布時(shí)間:2020-12-23 16:15:08 來源:億速云 閱讀:194 作者:Leah 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)使用Yii框架怎么對MySQL數(shù)據(jù)庫進(jìn)行讀寫分離,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

Yii Framework是一個(gè)基于組件、用于開發(fā)大型 Web 應(yīng)用的高性能 PHP 框架。Yii提供了今日Web 2.0應(yīng)用開發(fā)所需要的幾乎一切功能,也是最強(qiáng)大的框架之一,下文我們來介紹Yii實(shí)現(xiàn)MySQL多庫和讀寫分離的方法

前段時(shí)間為SNS產(chǎn)品做了架構(gòu)設(shè)計(jì),在程序框架方面做了不少相關(guān)的壓力測試,最終選定了YiiFramework,至于為什么沒選用公司內(nèi)部的 PHP框架,其實(shí)理由很充分,公司的框架雖然是"前輩"們辛苦的積累,但畢竟不夠成熟,沒有大型項(xiàng)目的歷練,猶如一個(gè)涉世未深的年輕小伙。Yii作為一個(gè) 頗有名氣開源產(chǎn)品,必定有很多人在使用,意味著有一批人在維護(hù),而且在這之前,我也使用Yii開發(fā)過大型項(xiàng)目,Yii的設(shè)計(jì)模式和它的易擴(kuò)展特性足以堪當(dāng)重任。

SNS同一般的社交產(chǎn)品不同的就是它最終要承受大并發(fā)和大數(shù)據(jù)量的考驗(yàn),架構(gòu)設(shè)計(jì)時(shí)就要考慮這些問題, web分布式、負(fù)載均衡、分布式文件存儲、MySQL分布式或讀寫分離、NoSQL以及各種緩存,這些都是必不可少的應(yīng)用方案,本文所講的就是MySQL 分庫和主從讀寫分離在Yii的配置和使用。

Yii默認(rèn)是不支持讀寫分離的,我們可以利用Yii的事件驅(qū)動(dòng)模式來實(shí)現(xiàn)MySQL的讀寫分離。

Yii提供了一個(gè)強(qiáng)大的CActiveRecord數(shù)據(jù)庫操作類,通過重寫getDbConnection方法來實(shí)現(xiàn)數(shù)據(jù)庫的切換,然后通過事件 beforeSave、beforeDelete、beforeFind 來實(shí)現(xiàn)讀寫服務(wù)器的切換,還需要兩個(gè)配置文件dbconfig和modelconfig分別配置數(shù)據(jù)庫主從服務(wù)器和model所對應(yīng)的數(shù)據(jù)庫名稱,附代碼
DBConfig.php文件如下:

復(fù)制代碼 代碼如下:

<?php
return array(
'passport' => array(
'write' => array(
'class' => 'CDbConnection',
'connectionString' => 'mysql:host=10.1.39.2;dbname=db1′,
'emulatePrepare' => true,
//'enableParamLogging' => true,
'enableProfiling' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8′,
'schemaCachingDuration'=>3600,
),
'read' => array(
array(
'class' => 'CDbConnection',
'connectionString' => 'mysql:host=10.1.39.3;dbname=db1,
'emulatePrepare' => true,
//'enableParamLogging' => true,
'enableProfiling' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8′,
'schemaCachingDuration'=>3600,
),
array(
'class' => 'CDbConnection',
'connectionString' => 'mysql:host=10.1.39.4;dbname=db3′,
'emulatePrepare' => true,
//'enableParamLogging' => true,
'enableProfiling' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8′,
'schemaCachingDuration'=>3600,
),
),
),
);


ModelConfig.php如下:

復(fù)制代碼 代碼如下:

<?php
return array(
//key為數(shù)據(jù)庫名稱,value為Model
'passport' => array('User','Post'),
'microblog' => array('…'),
);
?>


ActiveRecord.php如下:

復(fù)制代碼 代碼如下:

/**
* 基于CActiveRecord類的封裝,實(shí)現(xiàn)多庫和主從讀寫分離
* 所有Model都必須繼承些類.
*
*/
class ActiveRecord extends CActiveRecord
{
//model配置
public $modelConfig = '';
//數(shù)據(jù)庫配置
public $dbConfig = '';
//定義一個(gè)多數(shù)據(jù)庫集合
static $dataBase = array();
//當(dāng)前數(shù)據(jù)庫名稱
public $dbName = '';
//定義庫類型(讀或?qū)?
public $dbType = 'read'; //'read' or 'write'
/**
* 在原有基礎(chǔ)上添加了一個(gè)dbname參數(shù)
* @param string $scenario Model的應(yīng)用場景
* @param string $dbname 數(shù)據(jù)庫名稱
*/
public function __construct($scenario='insert', $dbname = '')
{
if (!empty($dbname))
$this->dbName = $dbname;
parent::__construct($scenario);
}
/**
* 重寫父類的getDbConnection方法
* 多庫和主從都在這里切換
*/
public function getDbConnection()
{
//如果指定的數(shù)據(jù)庫對象存在則直接返回
if (self::$dataBase[$this->dbName]!==null)
return self::$dataBase[$this->dbName];
if ($this->dbName == 'db'){
self::$dataBase[$this->dbName] = Yii::app()->getDb();
}else{
$this->changeConn($this->dbType);
}
if(self::$dataBase[$this->dbName] instanceof CDbConnection){
self::$dataBase[$this->dbName]->setActive(true);
return self::$dataBase[$this->dbName];
} else
throw new CDbException(Yii::t('yii','Model requires a "db" CDbConnection application component.'));
}
/**
* 獲取配置文件
* @param unknown_type $type
* @param unknown_type $key
*/
private function getConfig($type="modelConfig",$key="){
$config = Yii::app()->params[$type];
if($key)
$config = $config[$key];
return $config;
}
/**
* 獲取數(shù)據(jù)庫名稱
*/
private function getDbName(){
if($this->dbName)
return $this->dbName;
$modelName = get_class($this->model());
$this->modelConfig = $this->getConfig('modelConfig');
//獲取model所對應(yīng)的數(shù)據(jù)庫名
if($this->modelConfig)foreach($this->modelConfig as $key=>$val){
if(in_array($modelName,$val)){
$dbName = $key;
break;
}
}
return $dbName;
}
/**
* 切換數(shù)據(jù)庫連接
* @param unknown_type $dbtype
*/
protected function changeConn($dbtype = 'read'){
if($this->dbType == $dbtype && self::$dataBase[$this->dbName] !== null)
return self::$dataBase[$this->dbName];
$this->dbName = $this->getDbName();
if(Yii::app()->getComponent($this->dbName.'_'.$dbtype) !== null){
self::$dataBase[$this->dbName] = Yii::app()->getComponent($this->dbName.'_'.$dbtype);
return self::$dataBase[$this->dbName];
}
$this->dbConfig = $this->getConfig('dbConfig',$this->dbName);
//跟據(jù)類型取對應(yīng)的配置(從庫是隨機(jī)值)
if($dbtype == 'write'){
$config = $this->dbConfig[$dbtype];
}else{
$slavekey = array_rand($this->dbConfig[$dbtype]);
$config = $this->dbConfig[$dbtype][$slavekey];
}
//將數(shù)據(jù)庫配置加到component中
if($dbComponent = Yii::createComponent($config)){
Yii::app()->setComponent($this->dbName.'_'.$dbtype,$dbComponent);
self::$dataBase[$this->dbName] = Yii::app()->getComponent($this->dbName.'_'.$dbtype);
$this->dbType = $dbtype;
return self::$dataBase[$this->dbName];
} else
throw new CDbException(Yii::t('yii','Model requires a "changeConn" CDbConnection application component.'));
}
/**
* 保存數(shù)據(jù)前選擇 主 數(shù)據(jù)庫
*/
protected function beforeSave(){
parent::beforeSave();
$this->changeConn('write');
return true;
}
/**
* 刪除數(shù)據(jù)前選擇 主 數(shù)據(jù)庫
*/
protected function beforeDelete(){
parent::beforeDelete();
$this->changeConn('write');
return true;
}
/**
* 讀取數(shù)據(jù)選擇 從 數(shù)據(jù)庫
*/
protected function beforeFind(){
parent::beforeFind();
$this->changeConn('read');
return true;
}
/**
* 獲取master庫對象
*/
public function dbWrite(){
return $this->changeConn('write');
}
/**
* 獲取slave庫對象
*/
public function dbRead(){
return $this->changeConn('read');
}
}

這是我寫好的類,放在components文件夾里,然后所有的Model都繼承ActiveRecord類就可以實(shí)現(xiàn)多庫和主從讀寫分離了,至于如何支持原生的SQL也同時(shí)使用讀寫分離,此類都已經(jīng)實(shí)現(xiàn)。

關(guān)于使用Yii框架怎么對MySQL數(shù)據(jù)庫進(jìn)行讀寫分離就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI