[fw-general] Improve Zend_Application: moving out the stateless world

2010-08-25 Thread Jurian Sluiman
Hi all, When benchmarking Zend_Application I noticed still a lot of resources are used in the bootstrap process. To test if I could improve this waste I put the application instance into a session. My thoughts were it would only be necessary to run the app ($app-run();). This miserly failed

Re: [fw-general] Improve Zend_Application: moving out the stateless world

2010-08-25 Thread Ralph Schindler
Hey Jurian, This is an interesting discussion, but the bigger question is: to what end? PHP (and other scripting languages) are largely successful b/c the conceptual application is completely encapsulated inside of a web request. This is also called a shared-nothing architecture. I have a