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


in reply to Re: Global Variables Not Updated in Child Process
in thread Global Variables Not Updated in Child Process

So, is there anything I can use instead of forking? I want to run some processes in parallel and capture the results from them. My Prime focus is not forking but process some thing in a child process and get the values updated in parent.

Replies are listed 'Best First'.
Re^3: Global Variables Not Updated in Child Process
by afoken (Chancellor) on Nov 21, 2012 at 18:13 UTC
    My Prime focus is not forking but process some thing in a child process and get the values updated in parent.

    So you want your son to learn French and your daugther to learn German, and you expect that you automatically speak both French and German as soon as both have finished learning. Does that work in real life? Nope. And it also won't work with fork()ed processes.

    Please read fork-exec, fork, and perhaps also exec.

    Generally, processes can't update other processes data. You need some kind of inter-process communication, or shared memory. Shared memory won't work well with Perl, because perl tends to move data around when its size changes. See perlipc for details on both ways.

    Another option, with its own set of traps, is using threads. Threads give you lightweight "processes" inside a single process, and threads can actually share variables. See perlthrtut for details. Of course, this works only if all external programs you are using now are merged into a single big program (possibly by moving each program into a single module).

    Alexander

    --
    Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)
      Dear afoken, the natural analogy is the parent process getting pregnant because the child process had sax