rjsaulakh has asked for the wisdom of the Perl Monks concerning the following question:

where does all the CGI parameters get saved when i use

$session->save_param($CGI);

more information about my code is in node session variables

Replies are listed 'Best First'.
Re: CGI::Session
by wazoox (Prior) on May 28, 2005 at 15:34 UTC
    depends upon your configuration. Usually it's in a temporary file (if you use the file driver, the default one), a database, or maybe a cookie. See CGI::Session documentation, it's all in there (but it's quite tough).
    When using the file driver, you'll find in your temp directory (usually /tmp) files named SESSID13437441313 or similar, with some perl hash definition inside.