-2

i read a lot benchmark weblog posts about ZF2 that says zf2 has a low performance for response time because of huge functions load and class loads ...

so i need a list of possible ways to increase zf2 performance

thanks

Iznogood
  • 12,447
  • 3
  • 26
  • 44
Sina Miandashti
  • 2,087
  • 1
  • 26
  • 40

1 Answers1

3
  • Learn about the classmap_autoload.php
  • Always return fully qualified ViewModels
  • Use something like memcached or APC (always a massive speed boost for frameworks)
  • Cache heavy objects
  • Keep Module.php light

That's all i can come up with on a quick view other than that, google helps a lot, too

Community
  • 1
  • 1
Sam
  • 16,435
  • 6
  • 55
  • 89