in reply to Re: Memory Use/Garbage Collection: Java vs Perl
in thread Memory Use/Garbage Collection: Java vs Perl

Perl is "stackless", meaning it doesn't actually use the system stack to store any of its interpreter state (in the absence of XS code re-entering the interpreter to do callbacks and such). All of Perl's stacks are allocated out of the heap.
  • Comment on Re: Re: Memory Use/Garbage Collection: Java vs Perl