diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-07-07 10:22:22 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-07-07 10:22:22 +0200 |
commit | f5cc34c9c202eccf0a3cda95fc74e077dc49d80c (patch) | |
tree | cadf02f52c3df2a628e46284d5f90e0aaa74fcd7 /apps | |
parent | 09b9f94c38dda015412cebf2cc8f7c7100001a67 (diff) | |
download | nextcloud-server-f5cc34c9c202eccf0a3cda95fc74e077dc49d80c.tar.gz nextcloud-server-f5cc34c9c202eccf0a3cda95fc74e077dc49d80c.zip |
Reuse cache for directory mtime/size if filesystem changes can be ignored
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/lib/Lib/Storage/AmazonS3.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/files_external/lib/Lib/Storage/AmazonS3.php b/apps/files_external/lib/Lib/Storage/AmazonS3.php index 641a26b20ee..4a49f70dd58 100644 --- a/apps/files_external/lib/Lib/Storage/AmazonS3.php +++ b/apps/files_external/lib/Lib/Storage/AmazonS3.php @@ -45,6 +45,7 @@ use Aws\S3\S3Client; use Icewind\Streams\CallbackWrapper; use Icewind\Streams\IteratorDirectory; use OC\Cache\CappedMemoryCache; +use OC\Files\Cache\CacheEntry; use OC\Files\ObjectStore\S3ConnectionTrait; use OC\Files\ObjectStore\S3ObjectTrait; use OCP\Constants; @@ -374,6 +375,11 @@ class AmazonS3 extends \OC\Files\Storage\Common { //folders don't really exist $stat['size'] = -1; //unknown $stat['mtime'] = time(); + $cacheEntry = $this->getCache()->get($path); + if ($cacheEntry instanceof CacheEntry && $this->getMountOption('filesystem_check_changes', 1) !== 1) { + $stat['size'] = $cacheEntry->getSize(); + $stat['mtime'] = $cacheEntry->getMTime(); + } } else { $stat['size'] = $this->getContentLength($path); $stat['mtime'] = strtotime($this->getLastModified($path)); |