Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: What are the advantages or disadvantages of "require" over "use"

by Your Mother (Archbishop)
on Apr 18, 2014 at 17:54 UTC ( [id://1082794]=note: print w/replies, xml ) Need Help??


in reply to What are the advantages or disadvantages of "require" over "use"

What tobyink said. An example where I always choose require and put it in subs/methods is the admin functions in webapps. Most of an application’s users can’t even see the admin code so there is no point in taking the hit on all requests. Plus you can be less worried about bringing in many/heavy/slow modules–

use AllUserStuff; sub admin_stuff { require HugeExpensiveCodeRarelyEverCalled; require ManyMoreOtheSame; ... }

Just make sure to write good tests around it so you don’t get the run time surprises you mentioned.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (2)
As of 2024-04-19 20:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found