Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I have mod_perl reload source files on change?

I am developing an application with mod_perl and restarting the server every time I change code is a huge drag. I'd like to still use mod_perl for development because it's what I plan on using for the live server. I didn't see anything in the documentation about how to do this.

Thoughts?

like image 616
Frew Schmidt Avatar asked Jan 14 '09 07:01

Frew Schmidt


2 Answers

I think Apache2::Reload will somewhat accomplish what you're looking for. However, remember to delete all this implementation once you're ready to put the app in production.

Monitor All Modules in %INC

To monitor and reload all modules in %INC at the beginning of request's processing, simply add the following configuration to your httpd.conf:

PerlModule Apache2::Reload
PerlInitHandler Apache2::Reload

When working with connection filters and protocol modules Apache2::Reload should be invoked in the pre_connection stage:

PerlPreConnectionHandler Apache2::Reload

Register Modules Implicitly

To only reload modules that have registered with Apache2::Reload, add the following to the httpd.conf:

PerlModule Apache2::Reload
PerlInitHandler Apache2::Reload
PerlSetVar ReloadAll Off
# ReloadAll defaults to On

Then any modules with the line:

use Apache2::Reload;

Will be reloaded when they change.

For for information check out this documentation page. Hope this helps.

like image 61
David Avatar answered Oct 18 '22 17:10

David


I use this solution, from Perrin Harkins via PerlMonks:

Set MaxRequestsPerChild to 1, then load any potentially-changing modules in the child, not the parent (obviously only for development environments). Each request will hit a fresh child server, which will load all of your potentially-changing modules anew.

From "A better way to see module changes in a running web server"

like image 36
gigawatt Avatar answered Oct 18 '22 17:10

gigawatt