What kind of memory reclamation algorithm does MRI Ruby 1.8 use?

Posted by Foo on Stack Overflow See other posts from Stack Overflow or by Foo
Published on 2009-06-15T18:33:40Z Indexed on 2010/04/22 18:23 UTC
Read the original article Hit count: 122

Filed under:
|

In other languages you have a number of possibilities usually for memory reclamation:

  • Mark objects and then remove them
  • Explicit retain and release
  • Count references to objects
  • Internal heap disposition

How does Ruby work?

© Stack Overflow or respective owner

Related posts about ruby

Related posts about memory-management