<p class="p1">On Tue, Sep 20, 2011 at 9:09 AM, Your Friend <span dir="ltr"><<a href="mailto:parsimail2001@yahoo.se">parsimail2001@yahoo.se</a>></span> wrote:</p><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div><div style="color:#000;background-color:#fff;font-family:verdana, helvetica, sans-serif;font-size:12pt"><div>I'll try to take a closer look into my PHP application to fix the memory leak.</div><div></div></div></div>
</blockquote></div><br><div><p class="p1">One tip for PHP memory leak debugging is to to put:</p><p class="p2">echo memory_get_usage();</p><p class="p2">at the end of each iteration of your loop.  We find that objects sometimes are responsible for an increase in memory usage, and that you need to do $obj = null; unset($obj); at the end of each iteration to ensure they're properly disposed of, and thus ensure memory isn't leaked.</p>
</div><div>Good luck</div><div><br></div><div><br></div><div>Rob</div><div><br></div><div>(Apologies for being slightly off topic for Varnish-misc)</div>