I'm using PHP + Zend Framework for several CLI daemons. They take up quite a bit of memory. I'm assuming the Zend Framework part might be causing this, but I want to have facts showing me where the memory is wasted.
How can I determine where memory is wasted? Is this just a trial + error process? Also how can I improve garbage collection (I read some articles that this might also be an issue causing big memory usage).
What version of PHP are you running? Only PHP >=5.3 has a decent garbage collector. PHP <=5.2 can eat all your memory when used to run daemon scripts.