Skip to content

Commit ea96618

Browse files
committed
Adaptation of the connections method.
1 parent cbee902 commit ea96618

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

src/RedisManager.php

+25
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
use Illuminate\Redis\Connections\Connection;
77
use StdClass;
88
use Throwable;
9+
use WeakMap;
910
use Webman\Context;
1011
use Workerman\Coroutine\Pool;
1112

@@ -16,6 +17,11 @@ class RedisManager extends \Illuminate\Redis\RedisManager
1617
*/
1718
protected static array $pools = [];
1819

20+
/**
21+
* @var WeakMap
22+
*/
23+
protected WeakMap $allConnections;
24+
1925
/**
2026
* Get connection.
2127
*
@@ -37,6 +43,8 @@ public function connection($name = null)
3743
if (class_exists(Dispatcher::class)) {
3844
$connection->setEventDispatcher(new Dispatcher());
3945
}
46+
$this->allConnections ??= new WeakMap();
47+
$this->allConnections[$connection] = true;
4048
return $connection;
4149
});
4250
$pool->setConnectionCloser(function ($connection) {
@@ -62,4 +70,21 @@ public function connection($name = null)
6270
}
6371
return $connection;
6472
}
73+
74+
/**
75+
* Return all the created connections.
76+
*
77+
* @return array
78+
*/
79+
public function connections()
80+
{
81+
if (empty($this->allConnections)) {
82+
return [];
83+
}
84+
$connections = [];
85+
foreach ($this->allConnections as $connection => $_) {
86+
$connections[] = $connection;
87+
}
88+
return $connections;
89+
}
6590
}

0 commit comments

Comments
 (0)