Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^5: Threading: Invalid value for shared scalar

by BrowserUk (Patriarch)
on Jul 03, 2015 at 12:42 UTC ( [id://1133090]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Threading: Invalid value for shared scalar
in thread Threading: Invalid value for shared scalar

Or just:

my @parents = qw( a b c ); my @children = qw( 1 2 3 4 ); my %abc :shared; %{ $abc{ $_ } //= &share({}) } = map{ $_ => 1 } @children for @parents +; pp \%abc;

Which prints:

do { my $a = { # tied threads::shared::tie a => { # tied threads::shared::tie 1 => 1, 2 => 1, 3 => 'fix', 4 => 'fix', }, b => { # tied threads::shared::tie 1 => 1, 2 => 1, 3 => 'fix', 4 => 'fix', }, c => { # tied threads::shared::tie 1 => 1, 2 => 1, 3 => 'fix', 4 => 'fix', }, }; $a->{a}{3} = $a->{a}{1}; $a->{a}{4} = $a->{a}{2}; $a->{b}{3} = $a->{b}{1}; $a->{b}{4} = $a->{b}{2}; $a->{c}{3} = $a->{c}{1}; $a->{c}{4} = $a->{c}{2}; $a; }

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
I'm with torvalds on this Agile (and TDD) debunked I told'em LLVM was the way to go. But did they listen!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1133090]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (3)
As of 2024-04-24 00:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found