in reply to Transitioning to mod_perl
This happens because when you're using Apache::Registry, your code is loaded into memory when an apache child responds to a request. As you're developing, you change things often, and if you forget to restart your server, the old code can still be in memory. I find this can happen especially for people used to a CGI environment.
For us, setting up an environment to have personal server required some work. We finally landed on a system that uses a shared apache binary, but allows developers to have their own config file, logs, etc.
|
|---|