Evening All,
Could anybody either point me to some existing documentation as to the
specifics of Garbage Collection in PHP; specifically for multi-process
(forked) CLI applications. Specifically when is a variable a candidate
for garbage collection (the criteria); what timing can one expect to see
memory freed/gc cleanup run; any way's to force or tip's n tricks in
this area - basically anything to go off would be very much appreciated.
Many Regards!
Evening All,
Could anybody either point me to some existing documentation as to the
specifics of Garbage Collection in PHP; specifically for multi-process
(forked) CLI applications. Specifically when is a variable a candidate for
garbage collection (the criteria); what timing can one expect to see memory
freed/gc cleanup run; any way's to force or tip's n tricks in this area -
basically anything to go off would be very much appreciated.
It implements the following algorithm:
http://www.research.ibm.com/people/d/dfb/papers/Bacon03Pure.pdf
With a root buffer size of 10000.
regards,
Derick
--
HEAD before 5_3!: http://tinyurl.com/6d2esb
http://derickrethans.nl | http://ezcomponents.org | http://xdebug.org
Derick Rethans wrote:
Evening All,
Could anybody either point me to some existing documentation as to the
specifics of Garbage Collection in PHP; specifically for multi-process
(forked) CLI applications. Specifically when is a variable a candidate for
garbage collection (the criteria); what timing can one expect to see memory
freed/gc cleanup run; any way's to force or tip's n tricks in this area -
basically anything to go off would be very much appreciated.It implements the following algorithm:
http://www.research.ibm.com/people/d/dfb/papers/Bacon03Pure.pdfWith a root buffer size of 10000.
regards,
Derick
perfect thanks! :-)