So if I'm understanding this correctly, all I need to do to setup caching for my xf site is to install memcache and then just add:
to my config.php?
Then afterwards I should enable "Minify CSS" and "Fetch public templates as files"?
Also, how can I check if my caching is setup correctly afterwards?
Code:
$config['cache']['enabled'] = true;
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions']['cache_id_prefix'] = 'xf_';
$config['cache']['frontendOptions']['automatic_serialization'] = true;
$config['cache']['cacheSessions'] = true;
$config['cache']['backend']='Memcached';
$config['cache']['backendOptions']=array(
'compression'=>false,
'servers' => array(
array(
'host'=>'127.0.0.1',
'port'=>'11211',
'persistent' => 'true'
)
)
);
to my config.php?
Then afterwards I should enable "Minify CSS" and "Fetch public templates as files"?
Also, how can I check if my caching is setup correctly afterwards?