in reply to Re: Writing web pages in Perl with sessions
in thread Writing web pages in Perl with sessions

Hmmm memory only, huh... you might want to look into IPC::Shareable and build a perl data server separate from the web server. You need a separate data server because when the web server gets a cgi request it forks perl - when perl's done with the request it completely exits.

The perldoc for IPC::Shareable has an example of a data server, too. =)

-Ducky

  • Comment on Re: Re: Writing web pages in Perl with sessions