in reply to Apache::Session::MySql don't save data
Apache::Session doesn't save changes until it goes out of scope. If you put a session object in a global, as you do here with "our %session", it will never go out of scope. You can put it in a lexical variable or explicitly undef %session at the end of every request.
Also... MySQL 6.0.2 Alpha?!! Are you kidding me? I hope you enjoy crashes and debugging.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Apache::Session::MySql don't save data
by way (Sexton) on Feb 21, 2009 at 05:44 UTC |