Hi,
I'm currently using Memcached for the default xenforo caching:
$config['cache']['enabled'] = true;
$config['cache']['provider'] = 'Memcached';
$config['cache']['namespace'] = 'xenforo_cache';
$config['cache']['config'] = [
'server' => '127.0.0.1'
];
I now also want to enable Guest page caching with $config['pageCache']['enabled'] = true;
No I'm wondering what should I do:
a) just add $config['pageCache']['enabled'] = true; and using the same Memcached
b) a different kind of cache for the Guest page caching
c) a second instance of Memcached on a different port?
d) just a different namespace within Memcached?
Thanks,
jb-net
I'm currently using Memcached for the default xenforo caching:
$config['cache']['enabled'] = true;
$config['cache']['provider'] = 'Memcached';
$config['cache']['namespace'] = 'xenforo_cache';
$config['cache']['config'] = [
'server' => '127.0.0.1'
];
I now also want to enable Guest page caching with $config['pageCache']['enabled'] = true;
No I'm wondering what should I do:
a) just add $config['pageCache']['enabled'] = true; and using the same Memcached
b) a different kind of cache for the Guest page caching
c) a second instance of Memcached on a different port?
d) just a different namespace within Memcached?
Thanks,
jb-net