EvanDotPro / EdpSuperluminal

This module caches the common Zend\* classes used by your application into a single cache file, reducing reliance on the autoloader. This greatly improves the performance of ZF2.
BSD 2-Clause "Simplified" License
170 stars 45 forks source link

What's the difference between this module and the classmap generator? #29

Closed fabwu closed 10 years ago

mhujer commented 10 years ago

Classmap autoloader just speeds up file searching by providing "absolute" paths. This module, on the other hand, puts all loaded classes in one file, so the app then includes one file instead of hundreds.

ThaDafinser commented 10 years ago

Try it and believe your eyes :-)

fabwu commented 10 years ago

Thanks for this good explanation! My site starts like a rocket... :+1: