in reply to Re: Reload all files in mod_perl testing environment
in thread Reload all files in mod_perl testing environment

Thanks, but that defeats the purpose of using mod_perl.
It will always reload!
  • Comment on Re^2: Reload all files in mod_perl testing environment

Replies are listed 'Best First'.
Re^3: Reload all files in mod_perl testing environment
by afoken (Chancellor) on Sep 10, 2010 at 13:09 UTC

    That's one of the reasons why I prefer FastCGI over mod_perl.

    Additional reasons:

    • FastCGI works with other servers, not just Apache.
    • A broken application can't crash the entire webserver, "only" its FastCGI process.
    • Applications can run under different user accounts.
    • Applications can be managed by daemontools.
    • FastCGI applications can be debugged as simple, single-shot CGIs

    Alexander

    --
    Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)
Re^3: Reload all files in mod_perl testing environment
by jau (Hermit) on Sep 10, 2010 at 13:06 UTC

    Yes, but we were talking about a testing environment, right?