N
nocte
Guest
We are trying to get a Redis sentinel setup (1 master, 2 slaves) to work with guest page caching.
We have this addon by @Xon installed:
xenforo.com
My config.php:
PHP:
Read more
Continue reading...
We have this addon by @Xon installed:
Redis Cache By Xon
This add-on uses Credis with a custom cache provider for Redis. For best performance, install the php extension: phpredis You must have a Redis instance installed, this is likely not possible with shared hosting While XenForo 2 has a redis...My config.php:
PHP:
Code:
$config['cache']['enabled'] = true;
$config['cache']['namespace'] = 'xfredis_';
$config['cache']['provider'] = 'SV\RedisCache\Redis';
$config['cache']['config']['server'] = 'tcp://**.**.**.**:26379,tcp://**.**.**.**:26379,tcp://**.**.**.**:26379'...
Read more
Continue reading...