in reply to web app modules needed

  • Session and state...: Use CGI::Session. If you check the perldoc it will accomodate files and MySQL (from the perldoc):

    $session = new CGI::Session(undef, undef, {Directory=>'/tmp'}); $session = new CGI::Session("driver:File;serializer:Storable", undef ry=>'/tmp'}) $session = new CGI::Session("driver:MySQL;id:Incr", undef, {Handle=>
  • Nice charts...: You might try GD::SVG.

    Celebrate Intellectual Diversity

  • Replies are listed 'Best First'.
    Re^2: web ap modules needed
    by pajout (Curate) on Oct 10, 2005 at 13:51 UTC
      ad Session: Think about BerkleyDB, this is very usefull for tie-ying (oh, my English...) and storing on the fly. You can, for instance, serialize perl structures by Data::Dumper and store it as plain text... But if you need some concurrency, the SQL engines are much more better for maintenance reasons. We typically develops hand made session management for every web application because different requirements.