in reply to setting up to use Apache::Session::MySQL

The table sql is hidden away on this page:

http://search.cpan.org/~cwest/Apache-Session-1.80/Session/Store/MySQL.pm

It seems odd since there are only 2 columns, but the second column actually stores multiple values as delimited text which is parsed by the session module when the session is restored.

Update: sorry I can't be more help, I use CGI::Session myself: http://search.cpan.org/~sherzodr/CGI-Session-3.95/Session.pm
  • Comment on Re: setting up to use Apache::Session::MySQL

Replies are listed 'Best First'.
Re^2: setting up to use Apache::Session::MySQL
by leocharre (Priest) on Feb 14, 2006 at 16:42 UTC
    thing with CGI::Session.. that it's nice for single pairs, but what i want.. is some hash and array play.. storing a list in session, for example. apache::session seems to do that kind of thing.. so many people put work into it! i feel like a moron not using it. i'll have to try again sometime- thank you!!
      thing with CGI::Session is that it's nice for single pairs, but what i want is some hash and array play.

      I don't think that's true. From cgi session tutorial:

      It's possible to handle very big and even complex (in-memory) data structures transparently.