Compare commits

...

1 commit
0.4.0 ... main

Author SHA1 Message Date
ghost
3e9169066a fix flush delay 2024-02-03 01:00:45 +02:00

View file

@ -117,9 +117,11 @@ class Memory {
}
}
public function flush(int $delay = 60) : bool
public function flush(?int $delay = 0) : bool
{
return $this->_memcached->flush();
return $this->_memcached->flush(
$delay
);
}
private function _setKey(mixed $key) : string