Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^4: Threading: Invalid value for shared scalar

by hexcoder (Curate)
on Jul 03, 2015 at 12:05 UTC ( [id://1133085]=note: print w/replies, xml ) Need Help??


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

Very good explanation, thanks!

But in the second example this

... unless ( exists $abc{$parent}{$child} ) { my %c : shared; $abc{$parent}{$child}=\%c; } ...
looks like an superficial assignment of $abc{ $parent }{ $child } since immediately thereafter the reference \%c is overwritten by a scalar. For two levels of hashing two shared hashes should be enough (%abc and %p).

So for this example the following minimal version should work as well:

# shared hash version. my %abc : shared ; my @parents = qw( a b c ); my @children = qw( 1 2 3 4 ); for my $parent ( @parents ) { unless (exists $abc{$parent}) { my %p : shared; $abc{ $parent } = \%p; } for my $child ( @children ) { $abc{ $parent }{ $child } = 1; } }
For all Perl people who got a bit confused by the example code like I was...

Replies are listed 'Best First'.
Re^5: Threading: Invalid value for shared scalar
by BrowserUk (Patriarch) on Jul 03, 2015 at 12:42 UTC

    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://1133085]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-25 17:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found