Ruby Memory Management - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T00:29:04Z http://stackoverflow.com/feeds/question/181406 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/181406/ruby-memory-management 8 Ruby Memory Management Josh Moore 2008-10-08T04:59:05Z 2008-10-08T05:18:09Z <p>I have been using ruby for a while now and I find for bigger projects it can take up a fare amount of memory. What are ruby best practices for reducing memory usage?</p> <ul> <li>Please, let each answer have on "best practice" and let the community vote it up</li> </ul> http://stackoverflow.com/questions/181406/ruby-memory-management/181433#181433 5 Answer by Orion Edwards for Ruby Memory Management Orion Edwards 2008-10-08T05:09:20Z 2008-10-08T05:09:20Z <p>Beware of C extensions which allocate large chunks of memory themselves.</p> <p>As an example, when you load an image using RMagick, the entire bitmap gets loaded into memory inside the ruby process. This may be 30 meg or so depending on the size of the image.<br /> <strong>However</strong>, most of this memory has been allocated by RMagick itself. All ruby knows about is a wrapper object, which is tiny(1).<br /> Ruby only thinks it's holding onto a tiny amount of memory, so it won't bother running the GC. In actual fact it's holding onto 30 meg.<br /> If you loop over a say 10 images, you can run yourself out of memory really fast.</p> <p>The preferred solution is to manually tell the C library to clean up the memory itself - RMagick has a destroy! method which does this. If your library doesn't however, you may need to forcibly run the GC yourself, even though this is generally discouraged.</p> <p>(1): Ruby C extensions have callbacks which will get run when the ruby runtime decides to free them, so the memory will eventually be successfully freed at some point, just perhaps not soon enough.</p> http://stackoverflow.com/questions/181406/ruby-memory-management/181438#181438 4 Answer by Orion Edwards for Ruby Memory Management Orion Edwards 2008-10-08T05:12:22Z 2008-10-08T05:12:22Z <p>Don't abuse symbols.</p> <p>Each time you create a symbol, ruby puts an entry in it's symbol table. The symbol table is a global hash which <em>never</em> gets emptied.<br /> This is not technically a memory leak, but it behaves like one. Symbols don't take up much memory so you don't need to be too paranoid, but it pays to be aware of this.</p> <p>A general guideline: If you've actually typed the symbol in code, it's fine (you only have a finite amount of code after all), but don't call to_sym on dynamically generated or user-input strings, as this opens the door to a potentially ever-increasing number</p> http://stackoverflow.com/questions/181406/ruby-memory-management/181445#181445 10 Answer by Orion Edwards for Ruby Memory Management Orion Edwards 2008-10-08T05:18:09Z 2008-10-08T05:18:09Z <p>Don't do this:</p> <pre><code>def method(x) x.split( doesn't matter what the args are ) end </code></pre> <p>or this:</p> <pre><code>def method(x) x.gsub( doesn't matter what the args are ) end </code></pre> <p><a href="http://groups.google.com/group/god-rb/browse_thread/thread/1cca2b7c4a581c2/f0f040d41d7c49ea" rel="nofollow">Both will permanently leak memory in ruby 1.8.5 and 1.8.6</a>. (not sure about 1.8.7 as I haven't tried it, but I really hope it's fixed.) The workaround is retarded and involves creating a local variable. You don't have to use the local, just create one...</p> <p>Things like this are why I have lots of love for the ruby language, but no respect for MRI</p>