From f99ce0d546c8332bb46807eed21fcdf7d5d0ab71 Mon Sep 17 00:00:00 2001 From: Tomasz Grobelny Date: Sun, 27 Jan 2019 22:59:14 +0100 Subject: [PATCH] Throttle getstoragestats.php calls and allow simultaneous uploads Signed-off-by: Tomasz Grobelny --- apps/files/js/file-upload.js | 3 ++- apps/files/js/files.js | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index bc1a4b36794..9f1912d590d 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -845,7 +845,8 @@ OC.Uploader.prototype = _.extend({ type: 'PUT', dropZone: options.dropZone, // restrict dropZone to content div autoUpload: false, - sequentialUploads: true, + sequentialUploads: false, + limitConcurrentUploads: 10, //singleFileUploads is on by default, so the data.files array will always have length 1 /** * on first add of every selection diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 016aef05a96..a785a44ddd6 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -33,6 +33,9 @@ }, // update quota updateStorageQuotas: function() { + Files._updateStorageQuotasThrottled(); + }, + _updateStorageQuotas: function() { var state = Files.updateStorageQuotas; state.call = $.getJSON(OC.filePath('files','ajax','getstoragestats.php'),function(response) { Files.updateQuota(response); @@ -356,6 +359,7 @@ }; Files._updateStorageStatisticsDebounced = _.debounce(Files._updateStorageStatistics, 250); + Files._updateStorageQuotasThrottled = _.throttle(Files._updateStorageQuotas, 30000); OCA.Files.Files = Files; })();