On 10/5/06, Craig Tussey <[EMAIL PROTECTED]> wrote:
Please help me understand mod_perl
With only Perl, ... the instances don't know about each other and dataspaces are unique to an instance. How does mod_perl handle this. Are there any important differences with the only Perl situation.
any introduction to mod_perl should tell you that some of the data may persist between request events while some is per-request. Database connections in particular may pooled and conserved. Understanding these subtleties to avoid data corruption issues such as you are legitimately concerned about is why the competent mod_perl developers can demand the big bucks. http://www.google.com/search?q=introduction+to+mod_perl is a good starting point for starting points. Have a nice day.