System Information
- Strapi Version: 4.1.1
- Operating System: macOS Monterey 12.1
- Database: Postgres
- Node Version: 14.7.5
- NPM Version: ///
- Yarn Version: 1.22.17
Hello everyone!
My team and me are facing some issues right now developing a rather “big” app with Strapi as our CMS at the moment.
We are importing a lot of data from an old system and now that the amount of data grows and grows and there are more and more relations to fetch data for etc. we noticed our admin panel, more specifically the content-manager become quite slow. The GraphQL API runs just fine and is super fast, so no worries there.
Right now some Collection-Types take around 3-8 seconds to load the edit view and take similar times to save, depending on how many relations need to be populated. We streamlined our relations so that there aren’t any unnecessary queries and it did speed up the loading times a bunch (like refactoring some many to many relations into a has many relations).
I have been digging around a lot but didn’t find anything that was of help. I found this old issue: https://github.com/strapi/strapi/issues/4775 which sounded promising, but seems to have been resolved in v4.
I tried to disable the compression, especially the brotli compression in the strapi::compression middleware, but it didn’t seem to take any effect.
Anyone got any Ideas? I’m certainly running out of them…