in reply to Re: undef quite slow?
in thread undef quite slow?

If you just need to exit then there is a hack to skip Perl's (potentially slow) destruction phase, leaving the OS to clean up.

use POSIX; # big data structure here POSIX::_exit(0);

cheers

tachyon