本帖最后由 gai001.com 于 2012-7-31 21:36 编辑
WinCache是微软在IIS平台下发布的优秀的PHP加速器,Windows平台下其稳定性和性能提升比同类软件(xCache、Memcache、eAccelerator、APC等等)都好,能极大的改善PHP程序在Windows平台下的性能。
Discuz一直以来就不支持WinCache,感觉比较遗憾,不过还好,Discuz的扩展部分做的不错,能很容易的把WinCache支持部分快速增加上。下面就是第一改装网(gai001.com)技术团队修改的X2.5,能较好的支持WinCache,在这里跟大家分享一下。
20120731 21:35补充说明:
目前的WinCache不是正式版,只是开发版本,有时候会出500服务器错误,所以,请不要用于产品服务。
使用程序说明:
1、Discuz X2.5 20120701版本;
2、服务器程序版本:IIS7.5+PHP5.4.5 NTS;
3、WinCache 1.3.4 for PHP 5.4.X
已经上传到115,下载地址为:
http://115.com/file/e7k73ves#
[gai001.com]_wincache-1.3.4-dev-5.4-nts-vc9-x86.exe
修改文件内容:
1、\source\class\discuz\discuz_memory.php (修改)- $this->extension['eaccelerator'] = function_exists('eaccelerator_get');
- //下面这句是新增的,主要是判断wincache是否已经配置成功,并且运行正常;
- $this->extension['wincache'] = function_exists('wincache_ucache_get');
复制代码 这里, 'wincache' 是为了创建wincache的实现类;- foreach(array('apc', 'eaccelerator', 'xcache', 'wincache') as $cache) {
- if(!is_object($this->memory) && $this->extension[$cache] && $this->config[$cache]) {
- $class_name = 'memory_driver_'.$cache;
- $this->memory = new $class_name();
- $this->memory->init(null);
- }
- }
复制代码 2、\source\admincp\admincp_setting.php (修改)- $ea = array('eAccelerator',
- $cache_extension['eaccelerator'] ? cplang('setting_memory_php_enable') : cplang('setting_memory_php_disable'),
- $cache_config['eaccelerator'] ? cplang('open') : cplang('closed'),
- $cache_type == 'eaccelerator' ? $do_clear_link : '--'
- );
- //下面这句是新增的,主要是为了在后台内存优化管理页面,显示wincache相关的配置信息和数据
- //这里是把数据保存到数组里面;
- $wincache = array('WinCache',
- $cache_extension['wincache'] ? cplang('setting_memory_php_enable') : cplang('setting_memory_php_disable'),
- $cache_config['wincache'] ? cplang('open') : cplang('closed'),
- $cache_type== 'wincache' ? $do_clear_link : '--'
- );
复制代码- showtablerow('', '', $ea);
- //下面这句是新增的,主要是把wincache的配置信息和数据显示出来;
- showtablerow('', '', $wincache);
复制代码 3、\source\class\memory\memory_driver_wincache.php(新增)- <?php
- /**
- * WinCache Interface for Discuz X2.5 (IIS Platform)
- *
- * $Id: memory_driver_wincache.php 2012-07-30 Created by Yang Wang (http://gai001.com)
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- class memory_driver_wincache
- {
- public function init($config) {
- }
- public function get($key) {
- return wincache_ucache_get($key);
- }
- public function set($key, $value, $ttl = 0) {
- return wincache_ucache_set($key, $value, $ttl);
- }
- public function rm($key) {
- return wincache_ucache_delete($key);
- }
- public function clear() {
- return wincache_ucache_clear();
- }
-
- public function inc($key, $step = 1) {
- return wincache_ucache_inc($key, $step);
- }
- public function dec($key, $step = 1) {
- return wincache_ucache_dec($key, $step);
- }
- }
- ?>
复制代码 4、\config\config_global.php(修改)- $_config['memory']['eaccelerator'] = 1;
- //下面这句是新增的,是控制wincache是否启用;(1为启用;0为不启用)
- $_config['memory']['wincache'] = 1;
复制代码 上面的几个修改文件,我们也做了打包了,放在115上了:
http://115.com/file/e7k762tr#
[gai001.com]_WinCache support for Discuz X2.5.zip
注意:这里面没有config_global.php文件,自己修改一下即可!
本文由第一改装网(http://gai001.com)技术团队原创,转载请保留来源。
|