From 91d41433782fe5e6e02c0b0f30f750c5e74461da Mon Sep 17 00:00:00 2001 From: doneill Date: Thu, 14 May 2026 11:56:25 +0100 Subject: [PATCH 1/2] Add username and scheme to redis cache drive config override --- docs/general/system-configuration-overrides.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/general/system-configuration-overrides.md b/docs/general/system-configuration-overrides.md index d0cf38ce..ab4c7444 100755 --- a/docs/general/system-configuration-overrides.md +++ b/docs/general/system-configuration-overrides.md @@ -2398,8 +2398,10 @@ Example Usage: $config['redis'] = array( 'host' => '127.0.0.1', 'password' => NULL, + 'username' => NULL, 'port' => 6379, - 'timeout' => 0 + 'timeout' => 0, + 'scheme' => 'tcp' // Use 'tls' for Auth connection(username & password required) ); ## `relaxed_track_views` From 5d62bddb733c3cbadbe106f0e025b04450490ffb Mon Sep 17 00:00:00 2001 From: doneill Date: Thu, 14 May 2026 15:58:16 +0100 Subject: [PATCH 2/2] set scheme to default NULL, tcp not required. --- docs/general/system-configuration-overrides.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/general/system-configuration-overrides.md b/docs/general/system-configuration-overrides.md index ab4c7444..31d8a1fd 100755 --- a/docs/general/system-configuration-overrides.md +++ b/docs/general/system-configuration-overrides.md @@ -2401,7 +2401,7 @@ Example Usage: 'username' => NULL, 'port' => 6379, 'timeout' => 0, - 'scheme' => 'tcp' // Use 'tls' for Auth connection(username & password required) + 'scheme' => NULL // Use 'tls' for Auth connection(username & password required) ); ## `relaxed_track_views`