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


in reply to Re: Strange (for me) behavior of Parallel::ForkManager
in thread Strange (for me) behavior of Parallel::ForkManager

It works , but how to make it go out of the loop?
  • Comment on Re^2: Strange (for me) behavior of Parallel::ForkManager

Replies are listed 'Best First'.
Re^3: Strange (for me) behavior of Parallel::ForkManager
by mbethke (Hermit) on Nov 06, 2012 at 20:01 UTC
    If you need to leave early, you can use "last". Otherwise it will just read to EOF and then quit.
      It does not quit loop after executing last iteration. This is the problem, need it to quit after last iteration but it does not. ...
Re^3: Strange (for me) behavior of Parallel::ForkManager
by ikegami (Patriarch) on Mar 02, 2013 at 22:36 UTC
    There's only one process that loops. It loops until it reaches the end of the file, at which point it continues after the loop.