http://www.perlmonks.org?node_id=655693


in reply to Re: File does not exist: 500 read failed
in thread File does not exist: 500 read failed

Thanks. Speed is of the essence on this service, will using "eval" put any sort of time overhead on the function? Colin
  • Comment on Re^2: File does not exist: 500 read failed

Replies are listed 'Best First'.
Re^3: File does not exist: 500 read failed
by ikegami (Patriarch) on Dec 07, 2007 at 17:14 UTC

    Inappropriately named eval BLOCK is very different from eval EXPR.
    eval EXPR invokes the Perl parser to parse and execute EXPR. This should be avoided whenever possible.
    eval BLOCK, the function used in the parent, is the benign construct known as try in other languages.

    See eval.