http://www.perlmonks.org?node_id=981183


in reply to Threaded Application Sequencing/Rendezvous

Such a system happens to be available in GNU make. You can control the number of commands executed in parallel with the -j option, so make -j4 would start at most 4 processes in parallel.

If you happen to have a good way to factor everything so that each step produces a file (and reads the files it depends on), this might be an elegant solution.

Replies are listed 'Best First'.
Re^2: Threaded Application Sequencing/Rendezvous
by learnedbyerror (Monk) on Jul 12, 2012 at 21:57 UTC

    Moritz, Thanks for the suggestion. I do like the simplicity of this. I am still trying to keep it all in perl; however, if I don't succeed, make is my first fallback.

    Thanks, lbe