On Wed, 2003-10-01 at 16:23, Matisse Enzer wrote: > I'm sticking a reference to the session hash in the Apache request object: > > $r->pnotes($auth_name => \%session ); > > This is under mod_perl 2 > > I'm doing this in the belief that the request object goes out of > scope when Apache finishes handling the request, is this correct?
Yes. That's a good approach to caching the session for the length of a request. - Perrin