in reply to Static Data ("__DATA__" vs. "our")
If you use __DATA__ in a module, then please be careful to close DATA soon after the module is first required.
Otherwise you are tying up one of the process's finite supply of file handles. It is easy for a Perl script to use a lot more modules than it does file handles, so this has the potential to be a big problem.
- tye
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Static Data ("__DATA__" vs. "our") (handles)
by IlyaM (Parson) on Sep 18, 2003 at 19:30 UTC |