http://qs321.pair.com?node_id=317612


in reply to Code and Process Efficency

I think the performance hit is due to your scripts all trying to use the CPU at the same time. Try calling the scripts sequentially, because you don't need all of them running at once (do you??).

@scripts = ('eenie.pl','meenie.pl','foe.pl'); foreach $script ( @scripts ) { system( "perl -W".$script ); }
using system waits until one program finishes running before it executes another one.

Replies are listed 'Best First'.
Re: Re: Code and Process Efficency
by mcogan1966 (Monk) on Dec 30, 2003 at 12:42 UTC
    Actually, the scripts do need to run at the same time, hence the code as it was written. I wouldn't be trying to fork off multiple processes if I didn't need them to run at the same time.