in reply to Re: threads: spawn early to avoid the crush.
in thread threads: spawn early to avoid the crush.

If your daemon was forking, what you did was probably not a good idea. Although the processes appear to be larger when forking from a larger process, most of that memory is shared by copy-on-write. This is not the case with Perl threads, which is why BrowserUK's advice is correct for them.
  • Comment on Re^2: threads: spawn early to avoid the crush.