File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 6
6
use Illuminate \Redis \Connections \Connection ;
7
7
use StdClass ;
8
8
use Throwable ;
9
+ use WeakMap ;
9
10
use Webman \Context ;
10
11
use Workerman \Coroutine \Pool ;
11
12
@@ -16,6 +17,11 @@ class RedisManager extends \Illuminate\Redis\RedisManager
16
17
*/
17
18
protected static array $ pools = [];
18
19
20
+ /**
21
+ * @var WeakMap
22
+ */
23
+ protected WeakMap $ allConnections ;
24
+
19
25
/**
20
26
* Get connection.
21
27
*
@@ -37,6 +43,8 @@ public function connection($name = null)
37
43
if (class_exists (Dispatcher::class)) {
38
44
$ connection ->setEventDispatcher (new Dispatcher ());
39
45
}
46
+ $ this ->allConnections ??= new WeakMap ();
47
+ $ this ->allConnections [$ connection ] = true ;
40
48
return $ connection ;
41
49
});
42
50
$ pool ->setConnectionCloser (function ($ connection ) {
@@ -62,4 +70,21 @@ public function connection($name = null)
62
70
}
63
71
return $ connection ;
64
72
}
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
+ }
65
90
}
You can’t perform that action at this time.
0 commit comments