in reply to Re^2: Question about Parallel::ForkManager
in thread Question about Parallel::ForkManager

I didn't realized it used the disk. Pipes could be used, so I'm curious why it uses the disk. (Ah yes, using pipes would prevent the parent from doing other work while the children are running. This is usually not a problem, but it would break P::FM's interface to support this.)

There won't be a race condition. It surely defends against that using the process id in the file name.

  • Comment on Re^3: Question about Parallel::ForkManager

Replies are listed 'Best First'.
Re^4: Question about Parallel::ForkManager
by vit (Friar) on Sep 30, 2011 at 22:07 UTC
    Maybe I can do something simple with "fork" and pipes? If you have a solution could you give it to me.
      I don't have that handy, no. If you're ok with a solution that uses threads, I can provide that.