after upgrading from 2.8 to 3.4.14 we are experiencing way longer pageloads on local development machines (OSX).
load times
simple /login page (cache pre-warmed):
- nginx+php-fpm app.php: 6 seconds
- nginx+php-fpm app_dev.php: 10-12 seconds
- console server:run dev: 10-12 seconds
PHP config
xdebug completely not enabled in php.ini, further config to speed up things:
opcache.enable=1
opcache.memory_consumption=64
opcache.max_accelerated_files=4000
opcache.revalidate_freq=240
profiler data
Counting the milliseconds here doesn't get us to the 10 seconds it took to initialize Symfony... right?
Any suggestions on where else to look for the bottleneck?
Thanks a lot,
Kim