You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/redis/RedisConnectionFactory.php
+9-4
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,7 @@ class RedisConnectionFactory implements PsrConnectionFactory
33
33
* 'password' => Accepts a value used to authenticate with a Redis server protected by password with the AUTH command.
34
34
* 'async' => Specifies if connections to the server is estabilished in a non-blocking way (that is, the client is not blocked while the underlying resource performs the actual connection).
35
35
* 'persistent' => Specifies if the underlying connection resource should be left open when a script ends its lifecycle.
36
+
* 'lazy' => The connection will be performed as later as possible, if the option set to true
36
37
* 'timeout' => Timeout (expressed in seconds) used to connect to a Redis server after which an exception is thrown.
37
38
* 'read_write_timeout' => Timeout (expressed in seconds) used when performing read or write operations on the underlying network resource after which an exception is thrown.
38
39
* 'predis_options' => An array of predis specific options.
@@ -65,7 +66,7 @@ public function __construct($config = 'redis:')
0 commit comments