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

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

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

時(shí)間:2015-06-28 00:00:00 來(lái)源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評(píng)論(0)

本代碼是從uchome的代碼修改的,是因?yàn)橐鉀Quchome的效率而處理的。這個(gè)思維其實(shí)很久就有了,只是一直沒(méi)有去做,相信也有人有同樣的想法,如果有類(lèi)似的,那真的希望提出相關(guān)的建議。

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

為了方便,試試建立了google的一個(gè)項(xiàng)目
http://code.google.com/p/mysql-rw-php/

希望給有需要的朋友帶來(lái)幫助。

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

主要特性

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

英文比較爛,也寫(xiě)幾個(gè)字吧

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

<sub id="kt3qv"><label id="kt3qv"></label></sub>
  • /****************************************
    *** mysql-rw-php version 0.1 @ 2009-4-16
    *** code by hqlulu#gmail.com
    ***
    http://www.aslibra.com
    *** http://code.google.com/p/mysql-rw-php/
    *** code modify from class_mysql.php (uchome)
    ****************************************/
    class mysql_rw_php {
    ? //查詢(xún)個(gè)數(shù)
    ? var $querynum = 0;
    ? //當(dāng)前操作的數(shù)據(jù)庫(kù)連接
    ? var $link = null;
    ? //字符集
    ? var $charset;
    ? //當(dāng)前數(shù)據(jù)庫(kù)
    ? var $cur_db = '';
    ? //是否存在有效的只讀數(shù)據(jù)庫(kù)連接
    ? var $ro_exist = false;
    ? //只讀數(shù)據(jù)庫(kù)連接
    ? var $link_ro = null;
    ? //讀寫(xiě)數(shù)據(jù)庫(kù)連接
    ? 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時(shí),第一個(gè)連接作為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);
    ??? }
    ? }
    ? //連接一個(gè)只讀的mysql數(shù)據(jù)庫(kù)
    ? 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錯(cuò)誤
    ??? $this->connect($dbhost, $dbuser, $dbpw, $dbname, $pconnect, false);
    ??? if($this->link){
    ????? //連接成功
    ????? //echo "link ro sussess!
    ";
    ????? $this->ro_exist = true;
    ????? $this->link_ro = $this->link;
    ????? if($this->cur_db){
    ? //如果已經(jīng)選擇過(guò)數(shù)據(jù)庫(kù)則需要操作一次
    ? @mysql_select_db($this->cur_db, $this->link_ro);
    ????? }
    ??? }else{
    ????? //連接失敗
    ????? //echo "link ro failed!
    ";
    ????? $this->link = &$this->link_rw;
    ??? }
    ? }
    ? //設(shè)置一系列只讀數(shù)據(jù)庫(kù)并且連接其中一個(gè)
    ? function set_ro_list($ro_list){
    ??? if(is_array($ro_list)){
    ????? //隨機(jī)選擇其中一個(gè)
    ????? $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í)操作兩個(gè)數(shù)據(jù)庫(kù)連接
    ??? $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語(yǔ)句
    ??? 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)鍵詞標(biāo)簽:PHP,Mysql

    相關(guān)閱讀

    文章評(píng)論
    發(fā)表評(píng)論

    熱門(mén)文章 plsql developer怎么連接數(shù)據(jù)庫(kù)-plsql developer連接數(shù)據(jù)庫(kù)方法 plsql developer怎么連接數(shù)據(jù)庫(kù)-plsql developer連接數(shù)據(jù)庫(kù)方法 2021年最好用的10款php開(kāi)發(fā)工具推薦 2021年最好用的10款php開(kāi)發(fā)工具推薦 php利用淘寶IP庫(kù)獲取用戶(hù)ip地理位置 php利用淘寶IP庫(kù)獲取用戶(hù)ip地理位置 在 PHP 中使用命令行工具 在 PHP 中使用命令行工具

    相關(guān)下載

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