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.
I tried to port your module to ZF1 and it quite works - needs some more testing though.
I noticed that the resulting file can be so big, it actually slows some pages down (just because of HDD read speed - 12MB file on 30MB/s drive takes 500ms). I used php's php_strip_whitespace function. The resulting file was much smaller and it improved the load speed on my 5400rpm drive. I have not tested it on performant server HDD.
I tried to port your module to ZF1 and it quite works - needs some more testing though.
I noticed that the resulting file can be so big, it actually slows some pages down (just because of HDD read speed - 12MB file on 30MB/s drive takes 500ms). I used php's php_strip_whitespace function. The resulting file was much smaller and it improved the load speed on my 5400rpm drive. I have not tested it on performant server HDD.