Bill.D
Active member
Hey All,
I am looking to see if there are any other good options/recommendations for things I should Cache using my BackEnd MemCacheD System.
Here is my current config:
You can see I am currently caching sessions. I tried looking at the Zend documentation that I was linked to via Xenforo.com/help/cache/ but I am afraid it was a bit confusing! Are there any other optimizations I should consider? I already have FastCGI caching on via NGINX and I have integrated a CDN via these options:
And I have aslo enabled Gzip via Config.php & NGINX
Thanks for any advice
I am looking to see if there are any other good options/recommendations for things I should Cache using my BackEnd MemCacheD System.
Here is my current config:
PHP:
$config['cache']['enabled'] = true;
$config['cache']['cacheSessions'] = true;
$config['cache']['backend'] = 'Memcached';
$config['cache']['backendOptions'] = array(
'compression' => false,
'servers' => array(
array(
// your memcached server IP address X's for Privacy
'host' => 'xxxxxxxxxxxxxx',
// memcached port
'port' => 11211,
)
)
);
You can see I am currently caching sessions. I tried looking at the Zend documentation that I was linked to via Xenforo.com/help/cache/ but I am afraid it was a bit confusing! Are there any other optimizations I should consider? I already have FastCGI caching on via NGINX and I have integrated a CDN via these options:
PHP:
$config['externalDataUrl'] = 'http://cdn.xxxxx.com/data';
$config['javaScriptUrl'] = 'http://cdn.xxxxx.com/js';
Thanks for any advice