1、下载附件放在system\Zend\Cache\Backend 目录里
2、安装phpredis支持,
https://github.com/nicolasff/phpredis,在php.ini里面开启redis.so配置
3、修改wecenter的cache配置文件,/system/core/cache.php文件的第25行
private $backendName = 'Redis';
private $backendOptions = array(
// Redis配置
'servers' => array(
array(
'host' => '127.0.0.1',
'port' => 6379,
'dbindex' => 1
)
)
);
阅读全文
收起全文