Fill directory cache from opendir

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
Daniel Kesselberg 2019-01-01 18:15:07 +01:00
parent 12863e0d24
commit 80340a8d46
No known key found for this signature in database
GPG Key ID: 36E3664E099D0614
1 changed files with 3 additions and 1 deletions

View File

@ -60,6 +60,7 @@ class AmazonS3 extends \OC\Files\Storage\Common {
/** @var CappedMemoryCache|Result[] */
private $objectCache;
/** @var CappedMemoryCache|bool[] */
private $directoryCache;
@ -114,7 +115,7 @@ class AmazonS3 extends \OC\Files\Storage\Common {
unset($this->objectCache[$existingKey]);
}
}
unset($this->filesCache[$key]);
unset($this->directoryCache[$key], $this->filesCache[$key]);
}
/**
@ -334,6 +335,7 @@ class AmazonS3 extends \OC\Files\Storage\Common {
if (is_array($result['CommonPrefixes'])) {
foreach ($result['CommonPrefixes'] as $prefix) {
$files[] = substr(trim($prefix['Prefix'], '/'), strlen($path));
$this->directoryCache[substr(trim($prefix['Prefix'], '/'), strlen($path))] = true;
}
}
if (is_array($result['Contents'])) {