• 0 Posts
  • 2 Comments
Joined 1 year ago
cake
Cake day: April 20th, 2023

help-circle
  • Let’s dig into performance a bit. Your gen8 server i believe is using E5-26xx CPUs which is plenty of power for speedy performance in Nextcloud. You mentioned upgrading the CPUs and RAM so should be good to go.

    1. Ensure application files are stored on a SSD. I have seen significantly poor performance in Nextcloud when it’s running fully from HDD storage.
    2. Data storage is fine to remap to HDD storage. If running with docker this is as easy as:

    volumes: - /HDD_storage/nextcloud/data:/var/www/html

    1. Make sure to run Mariadb/MySQL for the database as opposed to SQLITE.
    2. Ensure REDIS is used and working. This will cache and speed up the UI.

    With all of that working correctly, Nextcloud is very performant on my comparable Dell R720.

    Edit, I see below you are on a microserver. I think all of the above still applies but I don’t have any experience with that hardware. I would still expect it possible to perform well on that device.