Is is possible to create a session using CGI::Session and have two different Perl scripts read and update values in it at the same time?
I've two scripts - one runs a program which calls the other script, while the first is still running. The first script sets up a session and then waits until it has been updated with data from the second script.
The second seems to open the session file OK, but calling $session->flush does not update the session file, so the first script is waiting for ever. Is this because it is still in use by the already running first script? Or have I missed something?