溫馨提示×

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

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

thinkphp下MySQL數(shù)據(jù)庫(kù)讀寫分離的示例分析

發(fā)布時(shí)間:2021-07-24 13:59:01 來(lái)源:億速云 閱讀:144 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要為大家展示了“thinkphp下MySQL數(shù)據(jù)庫(kù)讀寫分離的示例分析”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“thinkphp下MySQL數(shù)據(jù)庫(kù)讀寫分離的示例分析”這篇文章吧。

當(dāng)采用原生態(tài)的sql語(yǔ)句進(jìn)行寫入操作的時(shí)候,要用execute,讀操作要用query。

MySQL數(shù)據(jù)主從同步還是要靠MySQL的機(jī)制來(lái)實(shí)現(xiàn),所以這個(gè)時(shí)候MySQL主從同步的延遲問題是需要優(yōu)化,延遲時(shí)間太長(zhǎng)不僅影響業(yè)務(wù),還影響用戶體驗(yàn)。

thinkphp核心類Thinkphp/library/Model.class.php 中,query 方法,調(diào)用Thinkphp/library/Think/Db/Driver/Mysql.class.php

  /**
   * SQL查詢
   * @access public
   * @param string $sql SQL
   * @param mixed $parse 是否需要解析SQL 
   * @return mixed
   */
  public function query($sql,$parse=false) {
    if(!is_bool($parse) && !is_array($parse)) {
      $parse = func_get_args();
      array_shift($parse);
    }
    $sql =  $this->parseSql($sql,$parse);
    return $this->db->query($sql);
  }

調(diào)用Thinkphp/library/Think/Db/Driver/Mysql.class.php

  /**
   * 執(zhí)行查詢 返回?cái)?shù)據(jù)集
   * @access public
   * @param string $str sql指令
   * @return mixed
   */
  public function query($str) {
    if(0===stripos($str, 'call')){ // 存儲(chǔ)過程查詢支持
      $this->close();
      $this->connected  =  false;
    }
    $this->initConnect(false);
    if ( !$this->_linkID ) return false;
    $this->queryStr = $str;
    //釋放前次的查詢結(jié)果
    if ( $this->queryID ) {  $this->free();  }
    N('db_query',1);
    // 記錄開始執(zhí)行時(shí)間
    G('queryStartTime');
    $this->queryID = mysql_query($str, $this->_linkID);
    $this->debug();
    if ( false === $this->queryID ) {
      $this->error();
      return false;
    } else {
      $this->numRows = mysql_num_rows($this->queryID);
      return $this->getAll();
    }
  }

上面初始化數(shù)據(jù)庫(kù)鏈接時(shí),initConnect(false),調(diào)用Thinkphp/library/Think/Db/Db.class.php,注意false、true代碼實(shí)現(xiàn)。true表示直接調(diào)用主庫(kù),false表示調(diào)用讀寫分離的讀庫(kù)。

  /**
   * 初始化數(shù)據(jù)庫(kù)連接
   * @access protected
   * @param boolean $master 主服務(wù)器
   * @return void
   */
  protected function initConnect($master=true) {
    if(1 == C('DB_DEPLOY_TYPE'))
      // 采用分布式數(shù)據(jù)庫(kù)
      $this->_linkID = $this->multiConnect($master);
    else
      // 默認(rèn)單數(shù)據(jù)庫(kù)
      if ( !$this->connected ) $this->_linkID = $this->connect();
  }

  /**
   * 連接分布式服務(wù)器
   * @access protected
   * @param boolean $master 主服務(wù)器
   * @return void
   */
  protected function multiConnect($master=false) {
    foreach ($this->config as $key=>$val){
      $_config[$key]   =  explode(',',$val);
    }    
    // 數(shù)據(jù)庫(kù)讀寫是否分離
    if(C('DB_RW_SEPARATE')){
      // 主從式采用讀寫分離
      if($master)
        // 主服務(wù)器寫入
        $r =  floor(mt_rand(0,C('DB_MASTER_NUM')-1));
      else{
        if(is_numeric(C('DB_SLAVE_NO'))) {// 指定服務(wù)器讀
          $r = C('DB_SLAVE_NO');
        }else{
          // 讀操作連接從服務(wù)器
          $r = floor(mt_rand(C('DB_MASTER_NUM'),count($_config['hostname'])-1));  // 每次隨機(jī)連接的數(shù)據(jù)庫(kù)
        }
      }
    }else{
      // 讀寫操作不區(qū)分服務(wù)器
      $r = floor(mt_rand(0,count($_config['hostname'])-1));  // 每次隨機(jī)連接的數(shù)據(jù)庫(kù)
    }
    $db_config = array(
      'username' => isset($_config['username'][$r])?$_config['username'][$r]:$_config['username'][0],
      'password' => isset($_config['password'][$r])?$_config['password'][$r]:$_config['password'][0],
      'hostname' => isset($_config['hostname'][$r])?$_config['hostname'][$r]:$_config['hostname'][0],
      'hostport' => isset($_config['hostport'][$r])?$_config['hostport'][$r]:$_config['hostport'][0],
      'database' => isset($_config['database'][$r])?$_config['database'][$r]:$_config['database'][0],
      'dsn'    => isset($_config['dsn'][$r])?$_config['dsn'][$r]:$_config['dsn'][0],
      'params'  => isset($_config['params'][$r])?$_config['params'][$r]:$_config['params'][0],
      'charset'  => isset($_config['charset'][$r])?$_config['charset'][$r]:$_config['charset'][0],      
    );
    return $this->connect($db_config,$r);
  }

query方法參數(shù)為false,其他刪除、更新、增加讀主庫(kù)。這一點(diǎn)可以結(jié)合Thinkphp/library/Model.class.php中的delete、save、add操作,參數(shù)為true。

以上是“thinkphp下MySQL數(shù)據(jù)庫(kù)讀寫分離的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

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

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

AI