in reply to Re: how do I create parrallel processing in this script?
in thread how do I create parrallel processing in this script?

Thanks a lot for the suggestion. I think I would be needing another help, in this code i wanted to read files and split into threads the process and then join the output of the threads into one file. How an I do it other than using fork(),
  • Comment on Re^2: how do I create parrallel processing in this script?

Replies are listed 'Best First'.
Re^3: how do I create parrallel processing in this script?
by tirwhan (Abbot) on Feb 05, 2010 at 10:35 UTC

    Hmm. As I said above, there's not much point in doing this, because you almost certainly won't improve performance. However, if you did want to do this you could use one of the following methods:

    - print to the output file from the children instead of the parent. You'll need to lock the output file in some way (see "perldoc -q lock" for some ways on doing that) so that the writes are not completely jumbled.

    - use some form of Inter Process Communication to read the file content into the parent process. Read the documentation I linked to or search cpan for IPC for various ways of doing this.

    - use threads and a shared variable instead of fork.


    All dogma is stupid.