New X-CART Has Memcache Options
One thing I really like about the new x-cart versions is that they allow you to use memcache to cache data
In the root x-cart folder in config.php you can specify to use memcache
define('USE_MEMCACHE_DATA_CACHE', true);
define('MEMCACHE_SERVER_ADDRESS', 'localhost');
define('MEMCACHE_SERVER_PORT', 11211);
Now the only problem is that it only uses one memcache server so you either use the server you are running x-cart on or else dedicate a server specific for caching
In the root x-cart folder in config.php you can specify to use memcache
define('USE_MEMCACHE_DATA_CACHE', true);
define('MEMCACHE_SERVER_ADDRESS', 'localhost');
define('MEMCACHE_SERVER_PORT', 11211);
Now the only problem is that it only uses one memcache server so you either use the server you are running x-cart on or else dedicate a server specific for caching
Comments
Post a Comment