Skip to content

Commit

Permalink
Merge pull request #430 from solracsf/patch-1
Browse files Browse the repository at this point in the history
Remove out-of-date issue
  • Loading branch information
ylangisc authored Jan 31, 2024
2 parents 30ceb1d + e307aa8 commit 1e8e979
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions protocols/webdav/nextcloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,6 @@ Create different [shares](../../cyberduck/share.md#nextcloud--owncloud) using th

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.
Expand Down

0 comments on commit 1e8e979

Please sign in to comment.