Thread Perl 6 und Nebenläufigkeit (10 answers)
Opened by leo11 at 2009-01-02 18:35

sid burn
 2010-01-04 13:42
#129987 #129987
User since
2006-03-29
1520 Artikel
BenutzerIn

user image
Jup ist es. Das wurde beim Perl 6 Adventskalender erwähnt.

http://perl6advent.wordpress.com/2009/12/01/perl-6...

Genauer wurde es hier erwähnt: http://perl6advent.wordpress.com/2009/12/06/day-6-...

Quote
However much you are tempted to write @array>>.say, don’t do it. It may work in the current version of Rakudo, but by using the hyper operator you are promising the operation is parallelizable, and the order of the operations on the list(s) is not fixed. The hope is that future versions of Perl 6 will automatically run these operations in parallel.


Soweit wie es ausschaut sind die ganzen Metaoperatoren die auf einer Liste arbeiten automatisch schon so das hier Parallelisiert werden kann. Bzw man muss drauf achten das diese eben Parallel ablaufen dürfen. Das gleiche gilt auch für die any(), or() und and() "funktionen". Also z.B.

Code (perl): (dl )
if ( $irgendwas == 1|3|5 ) { ... }


Hab den Name gerade vergessen.
Nicht mehr aktiv. Bei Kontakt: ICQ: 404181669 E-Mail: perl@david-raab.de

View full thread Perl 6 und Nebenläufigkeit