NAME
CGI::Session::BitBucket - a module that loses your session data
SYNOPSIS
use CGI::Session;
my $session = new CGI::Session("driver:BitBucket", $sid, {Log=>1});
For more options and examples, read the rest of this document and consult CGI::Session.
DESCRIPTION
CGI::Session::BitBucket is a CGI::Session driver to let you add session support to your program and not have to worry about where it will be stored until you're ready for that part.
You can use the Log=>1 argument to see warnings in your log when the session would have stored, retrieved, and trashed data.
To write your own drivers for CGI::Session, refer to CGI::Session.
STORAGE
This driver does not store any data. This means whenever you load a session using BitBucket, your session will always be blank.
OPTIONS
Log => 1
Turn this on to see messages in your log about the data you would have saved if you were using something other than the bit bucket for storage.
COPYRIGHT
CGI::Session::BitBucket is Copyright (C) 2004 Jonathan Buhacoff. All rights reserved.
LICENSE
This library is free software and can be modified and distributed under the same terms as Perl itself.
AUTHOR
Jonathan Buhacoff <jonathan@buhacoff.net> wrote CGI::Session::BitBucket
SEE ALSO
CGI::Session - CGI::Session manual
CGI::Session::Tutorial - extended CGI::Session manual
CGI::Session::CookBook - practical solutions for real life problems
RFC 2965 - "HTTP State Management Mechanism" found at ftp://ftp.isi.edu/in-notes/rfc2965.txt
CGI - standard CGI library
Apache::Session - an alternative to CGI::Session