I have been banging my head against the wall on this one for quite some time. I have quite a few Custom Service Providers in my app, and Custom MU Plugins. I am going to try and leave as much details as possible, because my site can barely handle 2-3 users editing in the back of wordpress especially with Gutenberg and the pattern editor.
Stock Radicle seemed to be okay when I rebuilt my server from scratch but to be honest never really battle tested it with multiple users. The pattern editor itself was still a little bit slow with stock radicle. I actually took latest radicle and copied in all my code changes one by one and tested speed regressions on the site and it seemed ok until we had multiple users.
I deploy my site to cloudways 2gb server for qa
I simply deploy to a wordpress instance that was already installed change the root to current/public because I am using envoyer and run composer install
&
cd {{ release }}
wp acorn optimize
wp acorn icons:cache
wp acorn route:cache
wp rewrite flush
When I started I dumped the db and reinstalled wordpress
But to be honest this site is very slow
I need help and have tried to post here before but didn’t quite find what I needed.
I have new relic setup and it’s reporting a lot of data but I’m not exactly sure where to look in it.
If someone could point me in the right direction even if there is some help I could pay for from Radicle team I am really stuck at the moment
I have these following App Service Providers
'providers' => ServiceProvider::defaultProviders()->merge([
/*
* Package Service Providers...
*/
/*
* Application Service Providers...
*/
App\Providers\ThemeServiceProvider::class,
App\Providers\PostTypesServiceProvider::class,
App\Providers\SpeciesBlockServiceProvider::class,
App\Providers\CustomizerServiceProvider::class,
App\Providers\AssetsServiceProvider::class,
App\Providers\BlocksServiceProvider::class,
App\Providers\ThemeColorsServiceProvider::class,
App\Providers\TemplateCustomizerServiceProvider::class,
])->toArray(),
Heres a gist of the providers and plugins