In php is all the memory allocated to run my script released at the end of my page request or do I need to worry about memory leaks building up over time?
|
No. You do not need to manually free (call
The EDIT: There are exceptions, of course. Like persistent database connections. But those get handled eventually, so its not really a memory leak. |
|||
|
|
|
PHP does release memory that you claim by building objects etc. Still there are scenarios where memory is NOT released. For this the principle of garbage collection was introduced in version 5.3. You can use the gc_enable() function to execute it. Garbage collection in PHP is NOT active by default. |
|||||
|
|
Kind of, Memory leaks occur when things are cached. So if you have memory leaks in your php script your apache processes will increase over time, You can restart them after so many requests. Check the your Multi Processing Module (MPM) usually prefork or worker. Most cases though this wont effect you much unless your doing a lot of processing with PHP |
|||
|
|
|
Yes, all memory is released after your script terminates. However, memory leaks can occur during your script based on some algorithms. You can use |
|||||||||||||
|
|
PHP uses garbace collector. It frees all variables to which there are no references left. http://v1.srcnix.com/2010/02/10/7-tips-to-prevent-php-running-out-of-memory/ I am Pretty sure GC does it automatically for you. (it even closes open mysql connections) |
|||
|
|
memory_limitin your script, but that's another story. – vanneto Jan 21 at 9:06