in reply to Best secure state saving in CGI application

CGI::Session with the session ID in a cookie is the default.
  • Comment on Re: Best secure state saving in CGI application

Replies are listed 'Best First'.
Re^2: Best secure state saving in CGI application
by Devanchya (Beadle) on Mar 27, 2009 at 04:15 UTC
    CGI::Session looks like it is geared towards saving param data from form only. Am I missing something obvious?

    The data I would be saving would be long XML data strings or similar other REST api returns.

    Perhaps simply Cache or Cache::Memory would work better.

    Even smart people are dumb in most things...
      It's a generic storage system. It doesn't matter what your store in it.