in reply to
Parallel::ForkManager, DBI using memory
How many processes are running in parallel at once? 200 Perl interpreters with DBI loaded in each one could easilly take that much space.
Comment on
Re: Parallel::ForkManager, DBI using memory
Replies are listed 'Best First'.
Re^2: Parallel::ForkManager, DBI using memory
by
2ge
(Scribe)
on Nov 08, 2004 at 13:30 UTC
read documentation for ForkManager, it run just 5 parallel threads at once, it is written in here:
my $pm=new Parallel::ForkManager(5);
[reply]
In Section
Seekers of Perl Wisdom