Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^2: CGI::Session in modperl data is inconsistent

by keenlearner (Acolyte)
on May 26, 2012 at 15:18 UTC ( [id://972628]=note: print w/replies, xml ) Need Help??


in reply to Re: CGI::Session in modperl data is inconsistent
in thread CGI::Session in modperl data is inconsistent

thanks, I have read some of those article, still I cant find the cause of my bug.
  • Comment on Re^2: CGI::Session in modperl data is inconsistent

Replies are listed 'Best First'.
Re^3: CGI::Session in modperl data is inconsistent
by Corion (Patriarch) on May 26, 2012 at 16:04 UTC

    You don't show any code, so we can't reproduce or diagnose your problem. Please post a short, self-contained example that reproduces the problem.

    Maybe you don't use a backend for CGI::Session that works across mod_perl instances, or you don't save the values into the session when you think it does, or you don't retrieve the values from the session when you think you do.

      Hi, yeah I am aware of the problem of not showing the code but my code is just too big and libraries in multiple file calling each other which make it impossible to summarize the code. So I have to go this way.

      But finally I have found the cause. After update the session I have to undef($session) to destroy the session from memory instead of $session->flush() , because calling flush function only write data from memory to file and does not destroy the $session from cache MEMORY, when call CGI::Session->load($sessionId) with another child process, it will load the session that is still cache in memory by modperl that have the old value. So the one that's not updated will overwrite the session db file with the old value.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://972628]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (3)
As of 2024-04-26 04:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found