<?php
header("Content-Type:text/html; charset=utf8");
/**
* MySQL读写分离类的实现
* $db_config = array(
* 'master' => array('host'=>'localhost:3306','user'=>'admin','passwd'=>'123456','db'=>'stat'),
* 'slave' => array(
* array('host'=>'localhost:3307','user'=>'admin','passwd'=>'123456','db'=>'stat'),
* array('host'=>'localhost:3308','user'=>'admin','passwd'=>'123456','db'=>'stat')
* )
* );
*
* 注释:如果slave有多个时随机连接其中的一个
*/
$db_config = array(
'master' => array('host'=>'localhost:3306','user'=>'admin','passwd'=>'123456','db'=>'stat'),
'slave' => array(
array('host'=>'localhost:3307','user'=>'admin','passwd'=>'123456','db'=>'stat'),
array('host'=>'localhost:3308','user'=>'admin','passwd'=>'123456','db'=>'stat')
)
);
$db = MySQL::getInstance('','r-w');
$sql ="SELECT call_id,caller,callee,call_time,call_money,`date`,media_money,record_money FROM `success_bill` WHERE user_id='1' AND `date` BETWEEN 1427081035 AND 1427089577 LIMIT 0,15 ";
$start_time = microtime(true);
$rs = $db->query($sql);
while ($row = $db->fetch($rs)){
echo "".$row['call_id']." ".$row['caller']." ".$row['callee']." ".$row['call_time']." ".$row['call_money']." ".$row['date']." ".$row['media_money']." ".$row['record_money']."
";
}
// var_dump($db->get($rs)) ;
$end_time = microtime(true);
echo "总耗时 ", (($end_time - $start_time)*1000), " MS\n";
echo "峰值内存 ", round(memory_get_peak_usage()/1000), " KB\n";
echo "<hr />";
class MySQL
{
private static $_instance = null;//数据库连接实例
private static $_master = null;//主数据库连接实例
private static $_slave = null;//重数据库连接实例
public $_config = array();//数据库连接配置信息
public $_res = null;//查询实例句柄
public $_flag = '';//标识当前语句是在主还是从数据库上执行
public $_link = null;
/**
* 单实例
* Enter description here ...
* @param unknown_type $dbname
* @param unknown_type $mode
*/
public static function & getInstance($dbname='',$mode='rw'){
if (is_null(self::$_instance)){
self::$_instance = new self();
self::$_instance->__getConf();
self::$_instance->connect($dbname,$mode);
}
return self::$_instance;
}
/**
* 获取数据库配置信息
* Enter description here ...
*/
public function __getConf(){
global $db_config;
$this->_config['master'] = $db_config['master'];
$this->_config['slave'] = $db_config['slave'];
}
/**
* 数据库连接
* Enter description here ...
* @param $dbname 指定连接的数据库名,默认情况下连接配置文件的库
* @param $mode rw表示连接主库,r-w表示读写分离
*/
public function connect($dbname='',$mode = 'rw'){
if($mode == 'rw'){
if(is_null(self::$_master)){
$this->_master = $this->_slave = $this->conn_master($dbname);
}
}else{
if(is_null(self::$_master)){
$this->_master = $this->conn_master($dbname);
}
if(is_null(self::$_slave)){
$this->_slave = $this->conn_slave($dbname);
}
}
}
/**
* 连接到主数据库服务器
* Enter description here ...
*/
public function conn_master($dbname=''){
$_link = mysql_connect($this->_config['master']['host'],$this->_config['master']['user'],$this->_config['master']['passwd'],true) or die ("Connect ".$this->_config['master']['host']." fail.");
mysql_select_db(empty($dbname)?$this->_config['master']['db']:$dbname,$_link) or die(" The DB name ".$this->_config['master']['db']." is not exists.");
mysql_query("set names utf8",$_link);
return $_link;
}
/**
* 连接到从数据库服务器
* Enter description here ...
*/
public function conn_slave($dbname=''){
$offset = rand(0,count($this->_config['slave'])-1);
$_link = @mysql_connect($this->_config['slave'][$offset]['host'],$this->_config['slave'][$offset]['user'],$this->_config['slave'][$offset]['passwd'],true) or die(" Connect ".$this->_config['slave'][$offset]['host']." fail.");
mysql_select_db(empty($dbname)?$this->_config['slave'][$offset]['db']:$dbname,$_link) or die(" The DB name ".$this->_config['slave'][$offset]['db']." is not exists.");
mysql_query("set names utf8",$_link);
return $_link;
}
/**
* 执行数据库查询
* Enter description here ...
* @param string $sql
*/
public function query($sql,$master=true){
if($master == true || (substr(strtolower($sql),0,6) != 'select') && $master == false){
$this->_res = mysql_query($sql,$this->_master);
if(!$this->_res){
$this->_error[] = mysql_error($this->_master);
}
$this->_flag = 'master';
$this->_link = $this->_master;
} else {
$this->_res = mysql_query($sql,$this->_slave);
if(!$this->_res){
$this->_error[] = mysql_error($this->_slave);
}
$this->_flag = 'slave';
$this->_link = $this->_slave;
}
return $this->_res;
}
/**
* 获取单行记录
* Enter description here ...
* @param mixed $rs
*/
public function get($rs=''){
if(empty($rs)){
$rs = $this->_res;
}
return mysql_fetch_row($rs);
}
/**
* 获取多行记录
* Enter description here ...
* @param mixed $rs
* @param $result_type
*/
public function fetch($rs = ''){
if(empty($rs)){
$rs = $this->_res;
}
return mysql_fetch_array($rs,MYSQL_ASSOC);
}
/**
* 插入数据
* Enter description here ...
* @param unknown_type $sql
*/
public function add($sql){
$rs = $this->query($sql);
if($rs)
return mysql_insert_id($this->_link);
return false;
}
/**
* 更新数据
* Enter description here ...
* @param unknown_type $sql
*/
public function update($sql){
if(empty($sql)) return false;
$rs = $this->query($sql);
if($rs)
return $this->fetchNum();
return false;
}
/**
* 获取上一条语句影响的行数
* Enter description here ...
*/
public function fetchNum(){
return mysql_affected_rows($this->_link);
}
/**
* 析构函数,释放数据库连接资源
* Enter description here ...
*/
public function __destruct(){
mysql_close($this->_link);
}
}
分享到:
相关推荐
总结来说,PHP实现MySQL读写分离主要是通过判断SQL语句类型,然后根据读写需求连接不同的数据库。这个示例虽然简单,但它展示了基本思路,对于理解读写分离的概念以及在PHP中实现这一策略很有帮助。在实际项目中,应...
MySQL数据库复制和读写分离是数据库管理中的重要概念和实践,可以有效提升数据库的扩展性和可用性。特别是在高流量的Web应用中,读写分离可以减轻主服务器的压力,提高应用的性能。YII2是一个基于组件的高性能PHP...
MySQL的读写分离是一种常见的优化策略,尤其在高并发场景下,通过将读取操作分散到多个从库,减轻主库的压力,保证数据的写入速度。Thinkphp框架提供了一种便捷的方式实现MySQL的读写分离,使得开发者无需深入底层...
2. MYSQL读写分离原理:MYSQL读写分离的原理是让Master数据库处理事务性增、删除、修改、更新操作,而让Slave数据库处理SELECT操作,以保证数据的一致性和可用性。 3. MYSQL读写分离的实现方式:有四种常见的MYSQL...
在PHP中实现MySQL读写分离,我们可以创建一个数据库连接类,如`mysql_rw_php.class.php`中的示例。这个类包含两个主要的数据库连接:一个用于读操作(`$link_ro`),一个用于写操作(`$link_rw`)。类中还包括了连接...
基于此,我们再实现简单的PHP+Mysql读写分离,从而提高数据库的负载能力。 2、代码实战 <?php class Db { private $res; function __construct($sql) { $querystr = strtolower(trim(substr($sql,0,6))); ...
C E CCIC宋青见在2017PHP全球开发者大会上做了主题为《云原生的 MySQL 托管服务架构及读写分离的优化(PHP)》的演讲,就云原生的Azure RDS for MySQL托管服务架构,读写分离的优化,微服务架构Service Fabric的介绍做...
为了解决MySQL数据库的压力,企业通常会采用读写分离的技术。读写分离的核心思想是将数据库的读操作和写操作分开,主数据库(Master)负责处理所有的写操作,如CREATE、INSERT、UPDATE和DELETE,而从数据库(Slave)...
【课程大纲】 第1章 初始MySQL 共19...第21章 读写分离的利器——MySQL Proxy 共5页.pptx 第22章 PHP操作MySQL数据库 共7页.pptx 第23章 新闻发布系统数据库设计 共6页.pptx 第24章 论坛管理系统数据库设计 共6页.pptx
在Laravel中,数据库读写分离的配置是通过修改配置文件`config/database.php`来实现的。通过这个配置文件,我们可以指定主数据库(写操作)和从数据库(读操作)的连接信息,包括主机地址、用户名、密码以及其它连接...
本文将深入剖析在ThinkPHP框架下实现MySQL数据库读写分离的代码逻辑。 首先,理解读写分离的基本概念:读写分离是将数据库的读操作和写操作分配到不同的数据库服务器上,通常主数据库处理写操作,而从数据库处理读...
mysqlnd_ms是MySQL Native Driver的一个扩展,它允许在PHP中实现读写分离。与MySQL Proxy不同,mysqlnd_ms是在应用程序级别实现的,不需要额外的代理服务。 - **配置**:在PHP的`php.ini`配置文件中,你可以设置`...
在大型系统中,数据库的读写操作往往成为性能瓶颈,因此,实现读写分离和分库分表是优化数据库性能的重要手段。本文将深入探讨在Yii框架下如何实现这一目标。 一、读写分离 读写分离的基本思想是将数据库的读操作...