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
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.
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.