Symfony非常缓慢:30秒

时间:2017-09-16 08:21:22

标签: php apache symfony

我有一台新电脑戴尔Inspiron 17 7000系列。这是笔记本电脑:

  • i7-6500U CPU @ 2.50GHz,2601 MHz
  • 16 Go RAM
  • 512 Mo SSD
  • Windows 10,Wampserver 3.0.6和PHP7以及OPCache

但是使用Symfony(新应用程序,juste 3 slim控制器),我的应用程序非常慢...... 30秒:/

这是我的php.ini var:

 - realpath_cache_size = 12288K
 - realpath_cache_ttl = 1800
 - opcache.max_accelerated_files=60000

你能帮助我吗?

enter image description here

1 个答案:

答案 0 :(得分:2)

很可能是因为启用了XDebug。 它发生在Windows上的许多PHP应用程序中,而不仅仅是Symfony。

正如here所述,尝试禁用“remote_autostart”和“profiler_enable”模式:

xdebug.remote_autostart = 0
xdebug.profiler_enable = 0

甚至注释掉XDebug启用的行,如果上面没有帮助:

;zend_extension = "/absolute/path/to/your/xdebug-extension.so"