Skip to content

Commit 266acb5

Browse files
committed
use scan to clear cache
1 parent f175257 commit 266acb5

File tree

1 file changed

+26
-5
lines changed

1 file changed

+26
-5
lines changed

src/Cache/Engine/RedisClusterEngine.php

+26-5
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,35 @@ public function clear($check)
7878
return true;
7979
}
8080

81-
$keys = $this->_Redis->keys($this->_config['prefix'] . '*');
82-
$result = [];
81+
$result = true;
8382

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+
}
86107
}
87108

88-
return !in_array(false, $result);
109+
return $result;
89110
}
90111

91112
/**

0 commit comments

Comments
 (0)