From 698a713904ca6a7267a931eb5a4e2574380f82c5 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 1 Feb 2022 16:57:12 +0100 Subject: [PATCH] use persistent connections when connecting to redis Signed-off-by: Robin Appelman --- lib/private/RedisFactory.php | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/lib/private/RedisFactory.php b/lib/private/RedisFactory.php index 3062be28a780d..88d22cf9d1334 100644 --- a/lib/private/RedisFactory.php +++ b/lib/private/RedisFactory.php @@ -88,9 +88,9 @@ private function create() { // Support for older phpredis versions not supporting connectionParameters if ($connectionParameters !== null) { - $this->instance = new \RedisCluster(null, $config['seeds'], $timeout, $readTimeout, false, $auth, $connectionParameters); + $this->instance = new \RedisCluster(null, $config['seeds'], $timeout, $readTimeout, true, $auth, $connectionParameters); } else { - $this->instance = new \RedisCluster(null, $config['seeds'], $timeout, $readTimeout, false, $auth); + $this->instance = new \RedisCluster(null, $config['seeds'], $timeout, $readTimeout, true, $auth); } if (isset($config['failover_mode'])) { @@ -119,9 +119,17 @@ private function create() { $connectionParameters = [ 'stream' => $this->getSslContext($config) ]; - $this->instance->connect($host, $port, $timeout, null, 0, $readTimeout, $connectionParameters); + /** + * even though the stubs and documentation don't want you to know this, + * pconnect does have the same $connectionParameters argument connect has + * + * https://github.com/phpredis/phpredis/blob/0264de1824b03fb2d0ad515b4d4ec019cd2dae70/redis.c#L710-L730 + * + * @psalm-suppress TooManyArguments + */ + $this->instance->pconnect($host, $port, $timeout, null, 0, $readTimeout, $connectionParameters); } else { - $this->instance->connect($host, $port, $timeout, null, 0, $readTimeout); + $this->instance->pconnect($host, $port, $timeout, null, 0, $readTimeout); }