Fix "call to a member function setRedisConnector() on null" when using a non-default advanced configuration option
Track latest upstream Credis library Replace "master/slave" terminology with "primary/replica" terminology. Previous config.php setting will still work.
Initial php 8.2 compatibility update
Fix possible redis compatibility issue which may result in empty css being returned instead of a 404
Fix several php 8.1 compatibility issues with Redis sentinel usage Fix bad default port for raw IP when connnecting to multiple redis sentinels
Fix support for Redis v7+ high-availability using Redis Sentinel Add support for redis auth via username/password (vs just password). Requires redis v6+ PHP: $config['cache']['config']['username'] = 'myUsername'; // requires redis 6+, or for cloud redis installations $config['cache']['config']['password'] = '....'; Improve SSL/TLS support, exposing tls/ssl options. PHP: $config['cache']['config']['server'] = 'ssl://127.0.0.1'; // See https://www.php.net/manual/en/context.ssl.php for details $config['cache']['config']['tlsOptions'] = [ 'SNI_enabled' => true, ];
$config['cache']['config']['username'] = 'myUsername'; // requires redis 6+, or for cloud redis installations $config['cache']['config']['password'] = '....';
$config['cache']['config']['server'] = 'ssl://127.0.0.1'; // See https://www.php.net/manual/en/context.ssl.php for details $config['cache']['config']['tlsOptions'] = [ 'SNI_enabled' => true, ];
Fix php 8.1+ error with phpredis + socket connections Workaround for php 8.0.17+/8.1.4+ issue when zlib output compression & serving css
Fix case where cached forum thread counts may be inaccurate due to insufficiently specific cache key
Обновление