in reply to memory leak with perl ithreads

If you search for "thread leak" on perlmonks, you find the answer, the problem was discussed many times here. Shortly, on *nix perl threads leaking memory every time you creating a new thread. The bug was fixed somewhere around 5.13.9 if I remember correctly.

You should not create many threads, thread creation is rather expensive operation (on *nix it is more expensive than fork, I'm talking about perl threads of course). Solution is to use pool of threads.

Replies are listed 'Best First'.
Re^2: memory leak with perl ithreads
by Anonymous Monk on Apr 03, 2011 at 11:25 UTC
      Yes, win is not affected