Hi guys,
I have tried to measure bottlenecks in my application and I've noticed
that Zend_Date seems to be an heavy component. I have enabled the
cache and applied most of the performances tips suggested in the
manual, however this component seems to be slow yet.
I have also found the following:
new Zend_Date(); // 1000 cycles: 970 ms
new Zend_Date(time()); // 1000 cycles: 200 ms
Can you suggest any idea how to boost it?
Thanks,
Marco Pracucci
P.S. Zend_Date is a great component and I know that it's complex. I
just would like to get the best from it.