http://qs1969.pair.com?node_id=1147872


in reply to How can I limit the number of Cores in multi-process programming

On a unix box you can play with BSD::Resource (see setpriority()) or play with the nice command.

("nice perl myscript.pl" is a good start..)

  • Comment on Re: How can I limit the number of Cores in multi-process programming

Replies are listed 'Best First'.
Re^2: How can I limit the number of Cores in multi-process programming
by milesjin (Initiate) on Nov 17, 2015 at 03:52 UTC
    Thanks a lot. It's helpful.