On Thu, Dec 14, 2000 at 08:00:47PM -0800, Darren Duncan wrote:
> Now some questions that I hope some of you can help me with.  Hopefully
> each has short answers.

The mod_perl Guide at http://perl.apache.org/guide/ has a lot of good
information for programming under mod_perl. Most of the answers to your
questions below should already be answered there.

Apache::Registry Introduction:
http://perl.apache.org/guide/porting.html#Exposing_Apache_Registry_secret

Apache::Registry specific watchouts:
http://perl.apache.org/guide/performance.html#Apache_Registry_and_Derivatives
 
> of reloading any modules that I "use" or "require" when they change on

http://perl.apache.org/guide/config.html#The_Startup_File

> 2. The POD for Apache::Registry says that it doesn't like __END__ and
> __DATA__ tokens.  So what affect do these actually have if left in?  Does

http://perl.apache.org/guide/porting.html#_END_and_DATA_tokens

> 3. Related to the above, I use the Net::SMTP module by Graham Barr quite a
> lot to implement send e-mail (instead of sendmail) because it gives me

Doesnt answer your question but points you in the right direction:
http://perl.apache.org/guide/snippets.html#Sending_Email_from_mod_perl
 
> 4. Since I have been avoiding globals (eg: "Q::varname") so far, I'm not
> sure where and how to use them to work the way I need.  The only time I

If there is anything the guide covers really well, its this topic :)

For starters:
http://perl.apache.org/guide/perl.html#my_Scoped_Variable_in_Nested_S

Search for "global" in the search engine on the above URLs and you will
find a bunch of interesting explanations

Ajit

Reply via email to