Memcache php提高mysql负载有效方法
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-18 13:50:24 浏览: 评论:0
在php mysql的web应用中我们经常会碰到上千万级的数据量,为了减轻服务器的负载我们经常会使用第三个工具来减压,下我们为你提供一款Memcache php提高mysql负载有效方法.
Memcache的理由:
1.Web Server(Lighttpd、Nginx据说都比Apache效率高好多,大家可以试用下)对CPU要求高,对内存要求低,而Memcached Server是对CPU要求低,对内存要求高,所以可以搭配使用,在对前端的Web Server上安装Memcached Server是可行的。
2.金钱金钱金钱,最少的付出,获得最大的收益。
3.简单简单简单,对于一个架构合理的系统来说,添加Memcache的支持可能只是一个批量处理文件的过程.
Discuz!使用Memcache
1.在config.inc.php中增加如下代码:
2.在include/common.inc.php中
$mem = new Memcache;
$mem->connect($memcachehost, $memcacheport);
3.修改include/db_mysql.class.php中的fetch_array、query这两个方法,并添加query_mysql方法,代码如下:
- function fetch_array($query, $result_type = MYSQL_ASSOC) {
- return is_resource($query) ? mysql_fetch_array($query, $result_type) : $query[0];
- }
- function query_memcache($sql, $type = '') {
- global $mem,$memcachelife;
- $key = md5($sql);
- if(!($query = $mem->get($key))) {
- $query = $this->query($sql, $type);
- while($item = $this->fetch_array($query)) {
- $res[] = $item;
- }
- $query = $res;
- $mem->set($key, $query , 0, $memcachelife);
- }
- return $query;
- }
- function query($sql, $type = '') {
- global $debug, $discuz_starttime, $sqldebug, $sqlspenttimes;
- $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);
- }
- if(substr($sql, 0, 6) == 'SELECT') {
- echo '<font color="red">Cache SQL</font>:<font color="green">'.$sql.'</font><br /><br />';
- } else {
- echo '<font color="red">Flash SQL</font>:<font color="green">'.$sql.'</font><br /><br />';
- }
- //开源代码phpfensi.com
- $this->querynum++;
- return $query;
- }
4.将需要使用Memcache缓存的SQL查询的代码由 $db->query( 修改为 $db->query_memcache( 注意并将 while($post = $db->fetch_array($query)) { 修改为 foreach($query as $post) {
没有while的$db->fetch_array可以不用修改.
Tags: Memcache mysql负载
相关文章
- ·php memcached 扩展 timeout 问题(2013-12-06)
- ·php中Memcached连接超时问题解决办法(2013-12-07)
- ·memcached启动和关闭的方法(2014-02-10)
- ·php memcache和memcached的区别(2014-02-21)
- ·PHP连接Memcache程序代码(2014-06-10)
- ·emlog中使用memcache缓存配置修改方法(2014-06-17)
- ·php memcached安装与使用(2014-08-05)
- ·php实现memcache缓存实例详解(2014-08-27)
- ·php MemCache内存缓存学习笔记(2014-08-27)
- ·memcache构建简单的内存消息队列(2014-08-27)
- ·解决memcache中使用session_start启动慢(2014-08-27)
- ·清除memcache中的缓存一些方法总结(2014-08-27)
- ·PHP memcache实现消息队列实例(2014-08-27)
- ·PHP利用memcache缓存技术简单介绍(2014-08-28)
- ·php内存缓存实现程序代码(2014-08-28)
- ·php配置memcache缓存方法 (2014-09-05)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)