Hide Forgot
After installation, on administration page, owncloud display a warning about missing cache, which seems recommended for performance. See: https://doc.owncloud.org/server/8.1/admin_manual/configuration_server/caching_configuration.html Proposal: In config.php, addd 'memcache.local' => '\OC\Memcache\APCu', In spec file, add Requires: php-pecl(apcu) >= 4.0.6
I'm not keen on this change. There's a bunch of things that should be done after an install by a user - only one of which is to possibly enable caching. There's multiple different ways of carrying caching and if the administrator chooses to use redis, for instance, there would be a pointless php-pecl-aocu package installed. Note that redis is the required caching layer for Transactional File Locking https://doc.owncloud.org/server/8.1/admin_manual/configuration_files/files_locking_transactional.html If APCu is enabled by default there there would be no notification on the admin page pointing the new admin to the caching documentation where they would learn about this. Unless a *really* good reason can be provided for it I'm closing this WONTFIX NOTABUG
After sleeping on this I'd rather stick to no default configured so the message appears in the admin panel and the administrator of the owncloud installation will be directed to the docs to pick the best case for them, rather than hiding it from them. I will add a section to the README though that has the correct dnf install to pick up the relevant package properly.