wecenter增加redis支持模块配置
redis是高性能的缓存工具,相比较memecache有很多优势。zend官方暂时没有支持组件,但是也有不少第三方在做贡献。
1. 下载https://github.com/kalaspuff/redis-cache-zend-framework对应的redis类文件,放在系统
system/zend/cache/backend/里面。
2. 安装phpredis支持,https://github.com/nicolasff/phpredis,在php.ini里面开启redis.so配置
3. 在服务器上安装redis服务器。
4. 修改wecenter的cache配置文件,/system/core/cache.php文件的第25行
{{{
// 支持 File, Memcached, APC, Xcache, 手册参考: http://framework.zend.com/manual/zh/zend.cache.html
private $backendName = 'Redis';
private $backendOptions = array(
// redis 配置
'servers' => array(
array(
'host' => '127.0.0.1',
'port' => 6379,
'dbindex' => 1,
)
)
);
}}}
试试,有问题提出来一起交流。
2018-07-08 23:43
2016-01-12 20:12
2015-11-09 23:32
2015-01-09 23:00
2014-12-05 11:34
2014-10-17 12:48
2014-06-03 21:43
2014-05-23 09:30
2014-05-22 16:58
2014-05-22 16:47