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']='....';
$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,];
Force global namespace for functions which are known to be optimizable to bytecode in php
Track latest upstream Credis library
Fix "TypeError: Argument 1 passed to XXXX must be of the type YYYY, bool given" when the decompressor library for content stored in redis unexpectedly disappears
Support using PHP Redis extension for TLS connections when v5.3.0+ is present. Older version will fall back to the pure php implementation for communicating with a redis server