in reply to Re^2: What makes Golang appealing for Perl programmers?
in thread What makes Golang appealing for Perl programmers?

Hello again,

about parallel programming Perl has his own history: some core modules provide the possibility to work in parallel: see the main tutorial perlthrtut

Using this core approach is a delicate matter; see here at perlmonks posts by BrowserUk and perhaps zentara using threads to have good quality examples.

IO::Async is for sure a good quality module, given his authorship and because it is mentioned in Task::Kensho (a florilegium of many good modules).

Here at perlmonks we also have the honor to have marioroy who dedicated himself to the creation of MCE Multi Core Engine; a suit of modules that helps you in implementing a parallel work correctly. SuperSearch marioroy's posts here for many good examples.

L*

There are no rules, there are no thumbs..
Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.
  • Comment on Re^3: What makes Golang appealing for Perl programmers? -- perl parallel programming
  • Download Code

Replies are listed 'Best First'.
Re^4: What makes Golang appealing for Perl programmers? -- perl parallel programming
by mfzz (Novice) on Oct 06, 2016 at 07:55 UTC

    Hey, thanks for the informations. I'm gonna check that out and try to figure how to use them.