I am finding scant documentation on the Chameleon cache support. Only CACHE_NONE is mentioned in the doc.
Is this Chameleon-specific config setting in any way linked to Mediawiki cache support, or is it independent?
So if I have Redis running and defined for my wiki, can I define $egScssCacheType='redis';
in my LocalSettings.php?:
$wgObjectCaches['redis'] = [
'class' => 'RedisBagOStuff',
'servers' => [ '127.0.0.1:6379' ],
// 'connectTimeout' => 1,
// 'persistent' => false,
// 'password' => 'secret',
// 'automaticFailOver' => true,
];