in reply to Re: Re: Session Problems
in thread Session Problems
Second, there is no concept of "loggin in" and "logging out" in this code. It assigns anyone who comes along a cookie with a session ID, and creates backend storage for that session. It never makes any attempt to delete anything from the database. Are you talking about some other code that you didn't post?
There is a session ID, $session{_session_id}. Is that what you're talking about?
Note that Apache::Session stores all data as a BLOB serialized by Storable, so removing a value from the session should not cause anything to be deleted from the database, it would just update the row for that session. Values are not stored as separate rows.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Session Problems
by dstar (Scribe) on Aug 15, 2001 at 20:13 UTC | |
by perrin (Chancellor) on Aug 15, 2001 at 20:43 UTC | |
by dstar (Scribe) on Aug 15, 2001 at 22:48 UTC |