// Global Cache
$config['cache']['sessions'] = true;
$config['cache']['enabled'] = true;
$config['cache']['namespace'] = 'xf_';
$config['cache']['provider'] = 'Redis';
$config['cache']['config'] = [
'host' => '127.0.0.1',
'database' => 2,
'persistent' => true,
'persistent_id' => 'global'
];
// Global Cache
// Guest Page Cache
$config['pageCache']['enabled'] = true;
$config['pageCache']['recordSessionActivity'] = false;
$config['pageCache']['lifetime'] = 900;
$config['cache']['context']['page']['namespace'] = 'xff_';
$config['cache']['context']['page']['provider'] = 'Redis';
$config['cache']['context']['page']['config'] = [
'host' => '127.0.0.1',
'database' => 3,
'persistent' => true,
'persistent_id' => 'page'
];
// Guest Page Cache