Skip to content

Commit ea3345f

Browse files
committed
Fixed Ssdb cache clear
1 parent 20b538f commit ea3345f

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/phpFastCache/Drivers/Ssdb/Driver.php

+1-9
Original file line numberDiff line numberDiff line change
@@ -128,15 +128,7 @@ protected function driverDelete(CacheItemInterface $item)
128128
*/
129129
protected function driverClear()
130130
{
131-
$return = null;
132-
foreach ($this->instance->keys('', '') as $key) {
133-
$result = $this->instance->del($key);
134-
if ($result !== false) {
135-
$return = $result;
136-
}
137-
}
138-
139-
return $return;
131+
return $this->instance->flushdb('kv');
140132
}
141133

142134
/**

0 commit comments

Comments
 (0)