Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Strange memory growth

by ikegami (Patriarch)
on Feb 14, 2018 at 18:26 UTC ( [id://1209159]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $var->{$key}
    
  2. or download this
    ( $var //= {} )->{$key}
    
  3. or download this
    defined( $cg->{mainsnak}{datavalue}{value}{notexist} )
    
  4. or download this
    defined( ( ( ( ( $cg //= {} )->{mainsnak} //= {} )->{datavalue} //= {}
    + )->{value} //= {} )->{notexist} )
    
  5. or download this
    if (           $cg
       &&          $cg->{mainsnak}
    ...
    ) {
       ...
    }
    
  6. or download this
    no autovivification;
    if (defined( $cg->{mainsnak}{datavalue}{value}{notexist} )) {
       ...
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (6)
As of 2024-04-19 11:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found