http://www.perlmonks.org?node_id=344125


in reply to Re: Optimising processing for large data files.
in thread Optimising processing for large data files.

All excellent points, except that perl does use garbage collection for memory management, so that Perl is effectively a garbage-collected language. perl uses a refcount-based scheme; perlobj talks about the two-phase garbage collection scheme.

I am guessing that you know this already. Perhaps it doesn't fit your definition of GC?

-Mark