GoodForAnother
Member
Hello, I upgraded to LiteSpeed last night and then decided to get Redis up and running on our site (the-mainboard.com). LiteSpeed improved the "feel" of the site and the speed, as did switching to PHP7, but when I installed Redis and the Xon plugin it actually slowed down the site quite a bit for some reason. I disabled it for now, but I was wondering if there was anything that could cause this? I'm on XF 1.5, and still using MySQL for database at the moment. These are the cache settings I used:
Any ideas?
Code:
$config['cache']['enabled'] = true;
$config['cache']['cacheSessions'] = true;
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions'] = array(
'caching' => true,
'cache_id_prefix' => 'xf_',
'automatic_serialization' => false,
'lifetime' => 0
);
$config['cache']['backend'] = 'Redis';
$config['cache']['backendOptions'] = array(
'server' => '127.0.0.1',
'port' => 6379,
'connect_retries' => 2,
'use_lua' => true,
);
require(XenForo_Application::getInstance()->getConfigDir().'/SV/RedisCache/Installer.php');
Any ideas?