diff options
author | Robin Appelman <robin@icewind.nl> | 2025-03-05 18:31:19 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2025-03-19 17:30:36 +0100 |
commit | 4bc87f9b7f16fc5372bb6ea89fe0791a2ad71929 (patch) | |
tree | aebc6a371f34331392ca609a2591f975a490ef06 /lib/private/Files/Config/MountProviderCollection.php | |
parent | a532737e89b6f8533546245b217e67096457b463 (diff) | |
download | nextcloud-server-fetch-mount-memory-30-squash.tar.gz nextcloud-server-fetch-mount-memory-30-squash.zip |
squash: memory optimizationsfetch-mount-memory-30-squash
fix: optimize FileUtils::getFilesByUser
fix: fix getNodeFromCacheEntryAndMount using relative path
fix: reduce memory usage for fetching cached mount into
fix: improve getMountsForFileId memory usage and performance
fix: fix "new mount" false positives
fix: skip registering mounts if there are no new mount providers
fix: fix oci string length with empty strings
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files/Config/MountProviderCollection.php')
-rw-r--r-- | lib/private/Files/Config/MountProviderCollection.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/Files/Config/MountProviderCollection.php b/lib/private/Files/Config/MountProviderCollection.php index 0e103690b6b..d120e59b766 100644 --- a/lib/private/Files/Config/MountProviderCollection.php +++ b/lib/private/Files/Config/MountProviderCollection.php @@ -238,4 +238,8 @@ class MountProviderCollection implements IMountProviderCollection, Emitter { public function getProviders(): array { return $this->providers; } + + public function getHomeProviders(): array { + return $this->homeProviders; + } } |