Re: yes/no questions regarding preloading Perl modules

2003-11-25 Thread Chris Grau
On Tue, Nov 25, 2003 at 10:43:27AM -0800, Bryn Dyment wrote: [snip] Questions (using DBI as an example*): 1. If my preloaded (via startup.pl) my.pm module uses DBI, should I explicitly use DBI () in startup.pl as well? The second `use DBI' will be ignored, since DBI is already in %INC.

Re: yes/no questions regarding preloading Perl modules

2003-11-25 Thread Perrin Harkins
On Tue, 2003-11-25 at 13:43, Bryn Dyment wrote: 1. If my preloaded (via startup.pl) my.pm module uses DBI, should I explicitly use DBI () in startup.pl as well? Not necessary, but won't hurt anything. 2. Related to that, is it then kosher for my (non-preloaded Mason) my.html component to

Re: yes/no questions regarding preloading Perl modules

2003-11-25 Thread Cees Hek
Quoting Bryn Dyment [EMAIL PROTECTED]: I've been reading the mod_perl performance docs, and have a few yes/no-style (I hope) questions. Questions (using DBI as an example*): 1. If my preloaded (via startup.pl) my.pm module uses DBI, should I explicitly use DBI () in startup.pl as well?