IT貓撲網(wǎng):您身邊最放心的安全下載站! 最新更新|軟件分類|軟件專題|手機版|論壇轉(zhuǎn)貼|軟件發(fā)布

您當前所在位置:首頁網(wǎng)絡(luò)編程PHP編程 → PHP實現(xiàn)的Mysql讀寫分離

PHP實現(xiàn)的Mysql讀寫分離

時間:2015/6/28來源:IT貓撲網(wǎng)作者:網(wǎng)管聯(lián)盟我要評論(0)

本代碼是從uchome的代碼修改的,是因為要解決uchome的效率而處理的。這個思維其實很久就有了,只是一直沒有去做,相信也有人有同樣的想法,如果有類似的,那真的希望提出相關(guān)的建議。

封裝的方式比較簡單,增加了只讀數(shù)據(jù)庫連接的接口擴展,不使用只讀數(shù)據(jù)庫也不影響原代碼使用。有待以后不斷完善。。

為了方便,試試建立了google的一個項目
https://code.google.com/p/mysql-rw-php/

希望給有需要的朋友帶來幫助。

PHP實現(xiàn)的Mysql讀寫分離

主要特性

  1. 簡單的讀寫分離
  2. 一個主數(shù)據(jù)庫,可以添加更多的只讀數(shù)據(jù)庫
  3. 讀寫分離但不用擔心某些特性不支持
  4. 缺點:同時連接兩個數(shù)據(jù)庫

英文比較爛,也寫幾個字吧

php code for mysql read/write split
feature:
simply rw split
one master,can add more slaves
support all mysql feature
link to the master and slave at the same time

PHP代碼

mysql_rw_php.class.php

<?php
/****************************************
*** mysql-rw-php version 0.1 @ 2009-4-16
*** code by hqlulu#gmail.com
***
https://www.aslibra.com
*** https://code.google.com/p/mysql-rw-php/
*** code modify from class_mysql.php (uchome)
****************************************/
class mysql_rw_php {
  //查詢個數(shù)
  var $querynum = 0;
  //當前操作的數(shù)據(jù)庫連接
  var $link = null;
  //字符集
  var $charset;
  //當前數(shù)據(jù)庫
  var $cur_db = '';
  //是否存在有效的只讀數(shù)據(jù)庫連接
  var $ro_exist = false;
  //只讀數(shù)據(jù)庫連接
  var $link_ro = null;
  //讀寫數(shù)據(jù)庫連接
  var $link_rw = null;
  function mysql_rw_php(){
  }
  function connect($dbhost, $dbuser, $dbpw, $dbname = '', $pconnect = 0, $halt = TRUE) {
    if($pconnect) {
      if(!$this->link = @mysql_pconnect($dbhost, $dbuser, $dbpw)) {
  $halt && $this->halt('Can not connect to Mysql server');
      }
    } else {
      if(!$this->link = @mysql_connect($dbhost, $dbuser, $dbpw)) {
  $halt && $this->halt('Can not connect to MySQL server');
      }
    }
   
    //只讀連接失敗
    if(!$this->link && !$halt) return false;
   
    //未初始化rw時,第一個連接作為rw
    if($this->link_rw == null)
      $this->link_rw = $this->link;
    if($this->version() > '4.1') {
      if($this->charset) {
  @mysql_query("SET character_set_connection=$this->charset, character_set_results=$this->charset, character_set_client=binary", $this->link);
      }
      if($this->version() > '5.0.1') {
  @mysql_query("SET sql_mode=''", $this->link);
      }
    }
    if($dbname) {
      $this->select_db($dbname);
    }
  }
  //連接一個只讀的mysql數(shù)據(jù)庫
  function connect_ro($dbhost, $dbuser, $dbpw, $dbname = '', $pconnect = 0){
    if($this->link_rw == null)
      $this->link_rw = $this->link;
    $this->link = null;
    //不產(chǎn)生halt錯誤
    $this->connect($dbhost, $dbuser, $dbpw, $dbname, $pconnect, false);
    if($this->link){
      //連接成功
      //echo "link ro sussess!<br>";
      $this->ro_exist = true;
      $this->link_ro = $this->link;
      if($this->cur_db){
  //如果已經(jīng)選擇過數(shù)據(jù)庫則需要操作一次
  @mysql_select_db($this->cur_db, $this->link_ro);
      }
    }else{
      //連接失敗
      //echo "link ro failed!<br>";
      $this->link = &$this->link_rw;
    }
  }
  //設(shè)置一系列只讀數(shù)據(jù)庫并且連接其中一個
  function set_ro_list($ro_list){
    if(is_array($ro_list)){
      //隨機選擇其中一個
      $link_ro = $ro_list[array_rand($ro_list)];
      $this->connect_ro($link_ro['dbhost'], $link_ro['dbuser'], $link_ro['dbpw']);
    }
  }
  function select_db($dbname) {
    //同時操作兩個數(shù)據(jù)庫連接
    $this->cur_db = $dbname;
    if($this->ro_exist){
      @mysql_select_db($dbname, $this->link_ro);
    }
    return @mysql_select_db($dbname, $this->link_rw);
  }
  function fetch_array($query, $result_type = MYSQL_ASSOC) {
    return mysql_fetch_array($query, $result_type);
  }
  function fetch_one_array($sql, $type = '') {
    $qr = $this->query($sql, $type);
    return $this->fetch_array($qr);
  }
  function query($sql, $type = '') {
    $this->link = &$this->link_rw;
    //判斷是否select語句
    if($this->ro_exist && preg_match ("/^(\s*)select/i", $sql)){
      $this->link = &$this->link_ro;
    }
    $func = $type == 'UNBUFFERED' && @function_exists('mysql_unbuffered_query') ?
      'mysql_unbuffered_query' : 'mysql_query';
    if(!($query = $func($sql, $this->link)) && $type != 'SILENT') {
      $this->halt('MySQL Query Error', $sql);
    }
    $this->querynum++;
    return $query;
  }
  function affected_rows() {
    return mysql_affected_rows($this->link);
  }
  function error() {
    return (($this->link) ? mysql_error($this->link) : mysql_error());
  }
  function errno() {
    return intval(($this->link) ? mysql_errno($this->link) : mysql_errno());
  }
  function result($query, $row) {
    $query = @mysql_result($query, $row);
    retu

關(guān)鍵詞標簽:PHP,Mysql

相關(guān)閱讀

文章評論
發(fā)表評論

熱門文章 plsql developer怎么連接數(shù)據(jù)庫-plsql deveplsql developer怎么連接數(shù)據(jù)庫-plsql deve2021年最好用的10款php開發(fā)工具推薦2021年最好用的10款php開發(fā)工具推薦在 PHP 中使用命令行工具在 PHP 中使用命令行工具php應用程序安全防范技術(shù)研究php應用程序安全防范技術(shù)研究

相關(guān)下載

人氣排行 詳解ucenter原理及第三方應用程序整合思路、方法PHP中防止SQL注入攻擊PHP會話Session的具體使用方法解析PHP運行出現(xiàn)Notice : Use of undefined constant 的解決辦法CakePHP程序員必須知道的21條技巧PHP如何清空mySQL數(shù)據(jù)庫PHP采集圖片實例(PHP采集)plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法

<label id="u4bij"><button id="u4bij"></button></label>

    <optgroup id="u4bij"><thead id="u4bij"><strike id="u4bij"></strike></thead></optgroup>