in reply to Re: Forking and Net::SSH::Perl
in thread Forking and Net::SSH::Perl

Thanks salva. What links and/or modules do you recommend for the worker/queue approach? This'll be a first for me; generally my programs do not require forking or (shared) queues.

Parallel::Fork::BossWorker? Thread::Queue? POE?

Replies are listed 'Best First'.
Re^3: Forking and Net::SSH::Perl
by salva (Canon) on Apr 05, 2011 at 15:12 UTC
    Thread::Queue may be a good choice as sharing data between threads is easier than between processes but you will have to check that Net::SSH::Perl and its dependencies are thread safe.

    In any case, I am not an expert in that area, you will probably get better answers if you post a new question.