I added Zend Framework to my php project 1 month ago. I am using Zend_Measure and Zend_Locale for formatting the numbers to the good locale.
I am using php 5.3 with APC and Zend Framework 1.11.
I have a major issue with the export of raw data from my database. Excluding the mysql query time which is negligible the php export with formatting of the records takes 3.5 seconds per 1000 records. All this time is spend in Zend_Locale_Format::toNumber(). How can I improve the performance of this?
This benchmark has been done on my own computer (Macbook pro i5). On our production server it take 70 seconds per 1000 records!!! This server is a 2GB rackspaceCloud Cloud server with centos and only our web application running.
There is a 20 factor between the macbook and the rackspace server performance. Is my macbook so powerful? I don't think so... Where could be the problem?
Thanks for your help on this!
UPDATE
After doing some profiling it appear that the bottleneck is Zend_Cache_Backend_File->_fileGetContents. It use by default Zend_Cache_Backend_File. How can I configure Zend Framework to use Zend_Cache_Backend_Apc or Zend_Cache_Backend_TwoLevels? It could maybe improve the performance...