http://qs321.pair.com?node_id=1216598


in reply to Re^8: Why should any one use/learn Perl 6?
in thread Why should any one use/learn Perl 6?

Thank you for your elaboration.

If I understand you correctly, you either have a little boilerplate with tie

tie my $var, 'MCE::Shared', 0; $var = 42;

or you have a lot of boilerplate without tie

my $var = MCE::Shared->share( { module => 'My::Scalar' }, 0 ); $var->set(42)

And underneath you have locking going on in either case. Is that a correct summary?

Please note that I really like what you have done with MCE!