News Feed
Jobs Feed
Sections

Recent Jobs

News Archive
feed this:

Alex Netkachov's Blog:
Optimize PHP memory usage eliminate circular references
September 18, 2007 @ 17:17:21

On his blog today, Alex Netkachov has posted a suggestion of how to combat a common issue facing PHP scripts - their memory usage.

PHP has a build-in garbage collector so you do not need to track the links on the objects, allocate memory for objects and delete them when they are not longer necessary. Things seem so perfect that developers do not even know that their scripts allocate a lot of memory until their server stops processing requests because of the out of memory error.

His example is the processing of a parent/child relationship tree. If not managed correctly, the variables being used could get out of hand quite quickly. Alex recommends the use of a "destructor" at the end of each iteration to help destroy variables and values no longer needed.

0 comments voice your opinion now!
optimize memory circular reference destructor variable optimize memory circular reference destructor variable



Derick Rethans' Blog:
Circular References
June 26, 2007 @ 09:21:00

In a new post, Derick Rethans talks about circular references (a reference of a memory structure back to itself) and how they relate to PHP.

Circular-references has been a long outstanding issue with PHP. They are caused by the fact that PHP uses a reference counted memory allocation mechanism for its internal variables. This causes problems for longer running scripts (such as an Application Server or the eZ Components test-suite) as the memory is not freed until the end of the request. But not everybody is aware on what exactly the problem is, so here is a small introduction to circular references in PHP.

He starts by explaining what's so bad about circular references - issues not only with referencing the variable but also with freeing up the resources associated with it. He does suggest some solutions to the issue including garbage collection and cyclic tracing.

0 comments voice your opinion now!
circular reference garbagecollection cyclictracing circular reference garbagecollection cyclictracing



Community Events







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


ajax cakephp example PEAR database application PHP5 framework package security book zend conference developer zendframework release mysql releases code job

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