可以选择以下缓存系统:
- Memcached:内存缓存系统,访问速度最快。
- Redis:内存缓存系统,功能强大。
- APCu:PHP内置缓存系统,易于使用。
然后修改/includes/configure.php文件
define('CACHE_ENABLED', true);
define('CACHE_TYPE', 'memcached');
define('MEMCACHED_HOST', 'localhost');
define('MEMCACHED_PORT', 11211);
重启Apache
Comments | NOTHING