Hi list, I'm using mp2 (2.0.1) and have it configured like this:
-[httpd.conf]------------ PerlResponseHandler X; -[X.pm]------------------ package X; sub handler() { $r = shift; print STDERR \$r."\n"; } When I look at the printout, I get (ex): 0x11111 [req 1 child 1] 0x11111 [req 1 child 2] 0x22222 [req 2 child 1] 0x22222 [req 2 child 2] ... So I was wondering wether or not this is normal behaviour. (The Apache2::RequestRec is only re-new()ed every n-hits, n being the number of apache children) And where I could find out more about why it's doing this. -- kind regards, Tim Esselens