This is a discussion on Memory profiling tools within the PHP General forums, part of the PHP Programming Forums category; Hi all. I have a rather large application on which I need to do some memory performance profiling and optimization. ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi all. I have a rather large application on which I need to do some memory
performance profiling and optimization. Basically it's eating up more RAM than it should and I'm not sure why. I have some suspects, but nothing concrete. Are there any (open source) tools that people can recommend for such a task? Or any programming tricks one can recommend to identify the size of a given data structure? Windows or Linux are both fine; I have access to both. -- Larry Garfield larry@garfieldtech.com |
|
|||
|
> Hi all. *I have a rather large application on which I need to do some memory
> performance profiling and optimization. *Basically it's eating up more RAM xdebug + wincachegrind. xdebug came with XAMPP and wasn't too hard to enable. It spits out files that wincachegrind can view. Steve |