News Feed
Jobs Feed
Sections




News Archive
Kevin Schroeder:
Would this be a dumb idea for PHP core?
February 19, 2013 @ 09:26:55

In this new post to his site Kevin Schroeder thinks out loud and wonders if an idea of his is "a dumb idea" to be included into the PHP core - engine state caching.

I was consulting and I would see significant server resources consumed by bootstrapping the apps. Loading config files, loading dependent classes, setting up dependencies, initializing ACL's, and the list goes on and on. One of the ways to negate the effect would be to cache a bootstrap object and then pull that object from the cache at the start of the request. However, the problem is that unserialization can actually end up taking more time than the bootstrap process itself.

He wonders if, after the initial bootstrapping happened, a method could be called (his example is "init_engine_state") that would cache the Zend Engine's current state and pass that to a callback function. This would cache everything - objects, variables, classes, etc - all pre-interpreted into memory and make them easy to reuse on future executions. What do you think? Share your thoughts in the comments of the post.

0 comments voice your opinion now!
engine state cache zendengine bootstrap callback


blog comments powered by Disqus

Similar Posts

DevShed: Completing an Extensible Website Engine with PHP 5

DevShed: Using Advanced Functions to Maintain the State of Applications with PHP Sessions

Vance Lucas' Blog: Practical Uses for PHP 5.3 Closures

php|architect: September 2006 Issue Released

Michael Nitschinger: Caching Doctrine Entities with Couchbase


Community Events











Don't see your event here?
Let us know!


interview development zendframework2 code example podcast introduction application database testing api composer framework language functional community phpunit series release opinion

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework