Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^3: Benchmark: Constant List in Hash Slice

by dave_the_m (Monsignor)
on Mar 14, 2019 at 15:01 UTC ( [id://1231258]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Benchmark: Constant List in Hash Slice
in thread Benchmark: Constant List in Hash Slice

does this also explain why using a normal @array variable is faster than a constant list?
No. That's because constant arrays are implemented as constant array refs. So
use constant foo qw(a b c); @a = $h{foo()}
is implemented roughly as
use constant foo [qw(a b c)]; @a = $h{@{foo()}}
And neither (as far as I'm aware) get the compile-time HEK treatment

Dave.

Replies are listed 'Best First'.
Re^4: Benchmark: Constant List in Hash Slice
by LanX (Saint) on Mar 14, 2019 at 15:33 UTC
    Oh that's good to know, thanks! :)

    Hence constant arrays won't help much for tuning performance.

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    Wikisyntax for the Monastery FootballPerl is like chess, only without the dice

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (5)
As of 2024-04-19 01:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found