in reply to Re^2: Multithreaded memory usage
in thread Multithreaded memory usage

On Windows, start the subprocess not via fork() but better via system(1, @args) or via system("start @args");. That way, it is dissociated from the main Perl program.