File tree 1 file changed +26
-5
lines changed
1 file changed +26
-5
lines changed Original file line number Diff line number Diff line change @@ -78,14 +78,35 @@ public function clear($check)
78
78
return true ;
79
79
}
80
80
81
- $ keys = $ this ->_Redis ->keys ($ this ->_config ['prefix ' ] . '* ' );
82
- $ result = [];
81
+ $ result = true ;
83
82
84
- foreach ($ keys as $ key ) {
85
- $ result [] = $ this ->_Redis ->del ($ key ) > 0 ;
83
+ foreach ($ this ->_Redis ->_masters () as $ m ) {
84
+ $ iterator = null ;
85
+
86
+ do {
87
+ $ keys = $ this ->_Redis ->scan ($ iterator , $ m , 'tpd_g_* ' );
88
+
89
+ if ($ keys === false ) {
90
+ continue ;
91
+ }
92
+
93
+ foreach ($ keys as $ key ) {
94
+ if ($ this ->_Redis ->del ($ key ) < 1 ) {
95
+ $ result = false ;
96
+ }
97
+ }
98
+ } while ($ iterator > 0 );
99
+ }
100
+
101
+ while ($ keys = $ this ->_Redis ->scan ($ iterator , '' , $ this ->_config ['prefix ' ] . '* ' )) {
102
+ foreach ($ keys as $ key ) {
103
+ if ($ this ->_Redis ->del ($ key ) < 1 ) {
104
+ $ result = false ;
105
+ }
106
+ }
86
107
}
87
108
88
- return ! in_array ( false , $ result) ;
109
+ return $ result ;
89
110
}
90
111
91
112
/**
You can’t perform that action at this time.
0 commit comments