http://www.perlmonks.org?node_id=376405


in reply to Re^3: Embperl/Apache::Session and forking
in thread Embperl/Apache::Session and forking

I can't really close the session because there are things in the child which might need to get access to variables stored within it...

Do you have any specific things I can do in the child to declare the session is not stale (even if it is) so that it won't try to save it?... I've tried several things but can't get any of them to work...

- Greg
  • Comment on Re^4: Embperl/Apache::Session and forking

Replies are listed 'Best First'.
Re^5: Embperl/Apache::Session and forking
by perrin (Chancellor) on Jul 22, 2004 at 17:01 UTC
    Well, like I said, you can close it and re-open it in the child process. Which Apache::Session subclass are you using?

    Assuming this is not a brand-new session, you can mark it unmodified by changing the status field. Look at the Apache::Session source code to see how it's done.