Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Re: Re: Re: (OT) Perl Open Source accounting packages?

by mdillon (Priest)
on Oct 10, 2002 at 22:43 UTC ( [id://204359]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Re: (OT) Perl Open Source accounting packages?
in thread (OT) Perl Open Source accounting packages?

The effect of use strict occurs only at compile time, when Perl parses the source code and creates its internal representation. It does not change the execution speed of that code at run time. If the slowdown caused by strict is really a problem, the application can be designed in such a way that the code is only compiled once for a large number of operations. Depending on the application requirements and architecture, there are a number of ways to do this including turning the application into a long-running daemon or running it under mod_perl if it is a web application.

The big deal if use strict is removed is that it is only a matter of time before somebody decides to try to "fix" a bug in production code without bothering to re-enable strict. When that happens, and it probably will in most deployment environments, the risks of not using strict will far outweigh any potential slowdown from using it.

Besides, in what situation is the speed of an accounting application ever going to be more important that its correctness. I'd much rather have the code dealing with my money protected by the safety afforded by strict than have the code run a little faster.

Update: changed "executions" to "operations" in the first paragraph.

Replies are listed 'Best First'.
Re5: (OT) Perl Open Source accounting packages?
by blakem (Monsignor) on Oct 14, 2002 at 03:21 UTC
    strict 'vars' and strict 'subs' are compile time directives. However, strict 'refs' has runtime implications. See strict.

    -Blake

Re: Re: Re: Re: Re: (OT) Perl Open Source accounting packages?
by Anonymous Monk on Oct 14, 2002 at 02:40 UTC

    Excellent explanation, thanks :).

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (8)
As of 2024-03-28 11:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found