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

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

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

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

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

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

為了方便,試試建立了google的一個項目
http://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

/****************************************
*** 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 {
? //查詢個數(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!
";
????? $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!
";
????? $this->link = &$this->link_rw;
??? }
? }
? //設置一系列只讀數(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

關鍵詞標簽:PHP,Mysql

相關閱讀

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

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

相關下載

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

        <nav id="eyvr4"><font id="eyvr4"><pre id="eyvr4"></pre></font></nav>