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?
- Please, let each answer have on "best practice" and let the community vote it up
|
|
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?
|
||
|
|
|
|
Don't do this:
or this:
Both will permanently leak memory in ruby 1.8.5 and 1.8.6. (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... Things like this are why I have lots of love for the ruby language, but no respect for MRI |
||||
|
|
|
Beware of C extensions which allocate large chunks of memory themselves. 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. 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. (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. |
||
|
|
|
Don't abuse symbols. Each time you create a symbol, ruby puts an entry in it's symbol table. The symbol table is a global hash which never gets emptied. 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 |
||
|
|