From e307aa816bdeea16357f4518dd72ddafa83b1a62 Mon Sep 17 00:00:00 2001 From: Git'Fellow <12234510+solracsf@users.noreply.github.com> Date: Tue, 24 Oct 2023 21:30:07 +0200 Subject: [PATCH] Remove out-of-date issue Fixed upstream --- protocols/webdav/nextcloud.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/protocols/webdav/nextcloud.md b/protocols/webdav/nextcloud.md index b3823359..0803b43f 100644 --- a/protocols/webdav/nextcloud.md +++ b/protocols/webdav/nextcloud.md @@ -87,14 +87,6 @@ Create [public shares](../../cyberduck/share.md#nextcloud--owncloud) for people If you are running an Apache configuration make sure to disable `fastcgi` and `php-fpm`. Refer to our [best practice for Nextcloud and ownCloud installations](../../mountainduck/issues/fastcgi.md). -### Slow Listings for Large Folder Structures - -In order to retain timestamps for uploaded files, we make use of custom WebDAV properties. In Nextcloud and ownCloud these properties are stored in a dedicated database table `oc_properties`. This table unfortunately does not define any index to speed up the lookup for these properties when doing a listing. The database always has to do a full scan to find the properties for the requested resources. For installations with a large number of files, this can highly impact the response times for file listing. To overcome this issue you can create the following index: - - CREATE INDEX properties_path_index ON oc_properties(userid, propertypath) - -Also, refer to the [issue](https://github.com/nextcloud/server/issues/8962) in GitHub. - ### Modification Date The modification date retention is supported using `X-OC-Mtime` for new files uploaded but without the option to adjust the modification date later.