Track down Memory leaks in a Ruby Script - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T04:20:59Zhttp://stackoverflow.com/feeds/question/770555http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/770555/track-down-memory-leaks-in-a-ruby-script2Track down Memory leaks in a Ruby ScriptJulien Genestoux2009-04-21T00:06:10Z2009-04-23T16:13:32Z
<p>Hello!</p>
<p>I have created a Ruby XMPP Framework called <a href="http://github.com/julien51/babylon/tree/master" rel="nofollow">babylon</a>. I have then created a few applications with it and even though they run pretty smoothly, it seems that they're eating my computer memory bit by bit.</p>
<p>I suspected leaks, so first, I added this at some point in my code :</p>
<p>puts <code>ps -o rss= -p #{Process.pid}</code>.to_i</p>
<p>As suspected, the output kept increasing... slowly, but surely.</p>
<p>I tried to hunt the leaks with Dike, like <a href="http://jan.flempo.com/2008/01/04/memory-leaks-in-ruby-18/" rel="nofollow">explained here</a>.</p>
<p>Unfortunetely, Dike was not able to detect any leak. Even after it ran for a quite long time, it still returns the same objects.</p>
<p>So, how can I be sure that my framework is leaking, and not just taking some RAM until some maximum point and then starting to release it?</p>
<p>And then, how can I actually track the leaks and fix them?</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/770555/track-down-memory-leaks-in-a-ruby-script/782459#7824591Answer by Kyle Boon for Track down Memory leaks in a Ruby ScriptKyle Boon2009-04-23T16:13:32Z2009-04-23T16:13:32Z<p>I've heard good things about the <a href="http://softwareverify.com/ruby/customBuild/memtrack/index.html" rel="nofollow">Ruby Memory Tracking API</a> but it is not free.</p>
<p>There is also a useful blog post for <a href="http://www.idle-hacking.com/2008/05/ruby-extension-memory-leak-tracking/" rel="nofollow">using valgrind</a> to find ruby memory leaks.</p>
<p>There are other solutions for Ruby on Rails but it doesn't seem like you are using rails at all.</p>