CubeCart is compatible with the following cache systems and it will attempt to enable any that it detects.
Cache System | Available | Notes |
---|---|---|
APC | ✓ | |
"File" | ✓ | Slow |
Memcache | ✓ | |
Memcached | ✓ | Included as standard with Official CubeCart Hosting. |
XCache | ✓ | |
Redis | ✓ |
To force a specific cache please add (or edit) the following line in your includes/global.inc.php file.
$glob['cache'] = 'file';
This value can be 'apc', 'file', 'memcache', 'memcached', 'xcache' or 'redis'.
Additional Configuration Parameters
The following additional parameters can be added to the global.inc.php file.
Redis:
$glob['redis_parameters'] = array(); $glob['redis_options'] = array();
Memcached:
$glob['memcached_servers'] = array();
Memcache:
$glob['memcache_host'] = ''; $glob['memcache_port'] = '';
Comments
0 comments
Please sign in to leave a comment.