We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed54a51 commit 414f322Copy full SHA for 414f322
docs/transport/redis.md
@@ -67,6 +67,9 @@ $psrContext = (new \Enqueue\ConnectionFactoryFactory())->create('redis:')->creat
67
$redis = new \Enqueue\Redis\PhpRedis([ /** redis connection options */ ]);
68
$redis->connect();
69
70
+// Secure\TLS connection. Works only with predis library. Note second "S" in scheme.
71
+$factory = new RedisConnectionFactory('rediss://user:pass@host/0?vendor=predis');
72
+
73
$factory = new RedisConnectionFactory($redis);
74
```
75
0 commit comments