Do not expire chunks while checking for their existence

The expiration should be done by the gc() function on login, not while
isComplete() is calling hasKey() for every chunk.
remotes/origin/ldap_group_count
Vincent Petry 11 years ago
parent e2969062ca
commit ab56f69416
  1. 5
      lib/private/cache/file.php

@ -84,11 +84,6 @@ class File {
public function hasKey($key) {
$storage = $this->getStorage();
if ($storage && $storage->is_file($key)) {
$mtime = $storage->filemtime($key);
if ($mtime < time()) {
$storage->unlink($key);
return false;
}
return true;
}
return false;

Loading…
Cancel
Save